private SwaggerGeneratorInput(String endpoint, HttpMethod method, Map<String, String> pathParams, Map<String, String> headers, Map<String, Object> parameters, String swaggerJSONFilePath,
boolean isAuthentication, String username, String password, String host, String basePath, String apiPath, String apiName, String apiSummary, String apiDescription, List<String> apiTags){
this.endpoint = endpoint;
this.pathParams = pathParams;
this.headers = headers;
this.parameters = parameters;
this.swaggerJSONFile = swaggerJSONFilePath;
this.method = method;
this.authentication = isAuthentication;
this.username = username;
this.password = password;
this.host = host;
this.basePath = basePath;
this.apiPath = apiPath;
this.apiName = apiName;
this.apiSummary = apiSummary;
this.apiDescription = apiDescription;
this.apiTags = apiTags;
}
SwaggerGeneratorInput.java 文件源码
java
阅读 21
收藏 0
点赞 0
评论 0
项目:api2swagger
作者:
评论列表
文章目录