Package org.amdatu.web.rest.doc

Examples of org.amdatu.web.rest.doc.Description


            if (Modifier.isStatic(modifiers) || fieldType.isSynthetic()) {
                continue;
            }

            Description description = f.getAnnotation(Description.class);
            DefaultValue defaultValue = f.getAnnotation(DefaultValue.class);

            String swaggerType = convertToSwaggerType(models, fieldType);

            SwaggerModelProperty smp;
View Full Code Here


                    continue;
                } else if (Modifier.isStatic(modifiers) || fieldType.isSynthetic()) {
                    continue;
                }

                Description description = f.getAnnotation(Description.class);
                DefaultValue defaultValue = f.getAnnotation(DefaultValue.class);

                SwaggerDataType typeInfo = convertToSwaggerType(models, fieldType);

                SwaggerModelProperty smp;
View Full Code Here

TOP

Related Classes of org.amdatu.web.rest.doc.Description

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.