com.alilitech.swagger.web.entity.SwaggerEntity Maven / Gradle / Ivy
/**
* Copyright 2017-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.alilitech.swagger.web.entity;
import java.util.List;
import java.util.Map;
/**
*
* @author Zhou Xiaoxiang
* @since 1.0
*/
public class SwaggerEntity {
private String swagger;
private Info info;
private String basePath;
private List tags;
private Map> paths;
private Map definitions;
public String getSwagger() {
return swagger;
}
public void setSwagger(String swagger) {
this.swagger = swagger;
}
public Info getInfo() {
return info;
}
public void setInfo(Info info) {
this.info = info;
}
public String getBasePath() {
return basePath;
}
public void setBasePath(String basePath) {
this.basePath = basePath;
}
public List getTags() {
return tags;
}
public void setTags(List tags) {
this.tags = tags;
}
public Map> getPaths() {
return paths;
}
public void setPaths(Map> paths) {
this.paths = paths;
}
public Map getDefinitions() {
return definitions;
}
public void setDefinitions(Map definitions) {
this.definitions = definitions;
}
}