private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("API") .description("Some description") .version("1.0") .build(); }
private ApiInfo apiInfo() { return new ApiInfoBuilder() .title(title) .description(description) .license(LICENSE_TEXT) .version(SWAGGER_API_VERSION) .build(); }
private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("Spring Boot中使用Swagger2构建RESTful APIs") .description("详细描述参照源码 https://github.com/514840279/danyuan-application") .termsOfServiceUrl("http://danyuan.wang") .contact("") .version("1.0") .build(); }
private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("CISCore REST Interface API Doc.") .description("This is the CISCore REST Interface API Documentation made with Swagger.") .contact("Thomas Obritzhauser") .version("1.0") .build(); }
private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("LushX's RESTful APIs") .description("apply for HH") .version("1.0") .build(); }
private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("API接口文档") .description("帅帅哒康师傅") .contact("demo") .version("1.0") .build(); }
private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("Spring Boot中使用Swagger2构建RESTful APIs, Swagger2文档正在完善中...") .description("asofdate 系统开发平台") .termsOfServiceUrl("http://www.asofdate.com") .contact("hzwy23") .version("1.0") .build(); }
private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("Quark BBS 接口文档") .contact("LHR") .version("1.0") .build(); }
private ApiInfo getApiInfo() { return new ApiInfoBuilder() .title(title) .version(version) .build(); }
private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("Document Management API") .description("Documented API for the interim document management solution." + "To use the API calls generate an Authorization JWT Tokens (user and service) which is required in the header.") .version(apiVersion) .build(); }
private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("DigAg") .description("https://github.com/Yuicon") .termsOfServiceUrl("https://github.com/Yuicon") // .contact("Yuicon") .version("v1") .build(); }
private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("UPC易班发展中心技术开发部RESTful APIs") .description("更多详情请关注:https://github.com/upcyiban") .termsOfServiceUrl("https://github.com/upcyiban") .contact("UPC易班技术开发部") .version("1.0") .build(); }
@Bean public ApiInfo apiInfo() { return new ApiInfoBuilder() .title(apiContents.title) .license(apiContents.license) .licenseUrl(apiContents.licence_url) .version(apiContents.version) .description(apiContents.description) .contact(new Contact("", apiContents.source_url, "")) .build(); }
private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("Plum RESTful APIs") .description("博客API,包含前端/后台API。") .version("1.0") .build(); }
private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("Rest API of Async Engine") .contact("Fotis Tsakiris") .license("Apache License Version 2.0") .licenseUrl("https://github.com/ftsakiris/async-engine/blob/master/LICENSE") .version("1.0.0") .build(); }
@Bean public Docket api() { return new Docket(DocumentationType.SWAGGER_2) .apiInfo(new ApiInfoBuilder() .title("Intro to JUnit 5") .description("Demo of developing JUnit 5 tests against a SpringBoot application") .license("MIT") .build()) .select() .apis(RequestHandlerSelectors.basePackage("com.objectpartners.plummer.junit5")) .paths(PathSelectors.any()) .build(); }
ApiInfo apiInfo() { return new ApiInfoBuilder() .title("Yum Food Orders") .description("**Yum application, order food daily from the best chef in town** This API is used by the angular.io client, and is not meant to be used otherwise. Find source code of this API [here](http://gitlab/) Copyright (C) 2017 JR Technologies. ") .license("GPLv3") .licenseUrl("http://www.gnu.org/licenses/") .termsOfServiceUrl("") .version("1.0.0") .contact(new Contact("","", "")) .build(); }
private ApiInfo apiInfo() { return new ApiInfoBuilder() .title(title) .description(description) .termsOfServiceUrl(termsOfServiceUrl) .contact(new Contact(contactName, contactUrl, contactEmail)) .version(version) .build(); }
ApiInfo apiInfo() { return new ApiInfoBuilder() .title("Runbook API") .description("A sample microservice implemented with a CQRS architecture") .version("1.0.0") .build(); }
private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("3Audit 稽查系统 API文档页面") .description("API调用查找页面") .termsOfServiceUrl("http://118.190.132.68:3000/qiaorong/3audit") .contact("3Audit") .version("1.0") .build(); }