Package org.amdatu.web.rest.doc.swagger.model

Examples of org.amdatu.web.rest.doc.swagger.model.SwaggerResource


            Class<?> clazz = instance.getClass();

            String path = getPath(clazz.getAnnotation(Path.class));
            String doc = getDescription(clazz.getAnnotation(Description.class));

            rs.add(new SwaggerResource(rootPath.concat(path), doc));
        }

        return new SwaggerResources(baseURL, rs);
    }
View Full Code Here


            Class<?> clazz = instance.getClass();

            String path = getPath(clazz.getAnnotation(Path.class));
            String doc = getDescription(clazz.getAnnotation(Description.class));

            rs.add(new SwaggerResource(rootPath.concat(path), doc));
        }

        return new SwaggerResources(baseURL, rs);
    }
View Full Code Here

TOP

Related Classes of org.amdatu.web.rest.doc.swagger.model.SwaggerResource

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.