Package com.wordnik.swagger.annotations

Examples of com.wordnik.swagger.annotations.ApiModel


    return models;
  }


  private Option<String> modelDescription(ResolvedType type) {
    ApiModel annotation = AnnotationUtils.findAnnotation(type.getErasedType(), ApiModel.class);
    if (annotation != null) {
      return Option.apply(annotation.description());
    }
    return Option.apply("");
  }
View Full Code Here

TOP

Related Classes of com.wordnik.swagger.annotations.ApiModel

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.