
io.jboot.support.swagger.JbootSwaggerConfig Maven / Gradle / Ivy
/**
* Copyright (c) 2015-2020, Michael Yang 杨福海 ([email protected]).
*
* 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 io.jboot.support.swagger;
import io.jboot.app.config.annotation.ConfigModel;
import io.jboot.utils.StrUtil;
@ConfigModel(prefix = "jboot.swagger")
public class JbootSwaggerConfig {
private String path;
private String title;
private String description;
private String version;
private String termsOfService;
private String host;
private String contactName;
private String contactEmail;
private String contactUrl;
private String licenseName;
private String licenseUrl;
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public boolean isConfigOk() {
return StrUtil.isNotBlank(path);
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public String getTermsOfService() {
return termsOfService;
}
public void setTermsOfService(String termsOfService) {
this.termsOfService = termsOfService;
}
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
public String getContactName() {
return contactName;
}
public void setContactName(String contactName) {
this.contactName = contactName;
}
public String getContactEmail() {
return contactEmail;
}
public void setContactEmail(String contactEmail) {
this.contactEmail = contactEmail;
}
public String getContactUrl() {
return contactUrl;
}
public void setContactUrl(String contactUrl) {
this.contactUrl = contactUrl;
}
public String getLicenseName() {
return licenseName;
}
public void setLicenseName(String licenseName) {
this.licenseName = licenseName;
}
public String getLicenseUrl() {
return licenseUrl;
}
public void setLicenseUrl(String licenseUrl) {
this.licenseUrl = licenseUrl;
}
}