
com.mangofactory.swagger.models.dto.ApiInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-models Show documentation
Show all versions of swagger-models Show documentation
This project integrates swagger with the Spring Web MVC framework
The newest version!
package com.mangofactory.swagger.models.dto;
public class ApiInfo {
private final String title;
private final String description;
private final String termsOfServiceUrl;
private final String contact;
private final String license;
private final String licenseUrl;
public ApiInfo(String title, String description, String termsOfServiceUrl, String contact, String license, String
licenseUrl) {
this.title = title;
this.description = description;
this.termsOfServiceUrl = termsOfServiceUrl;
this.contact = contact;
this.license = license;
this.licenseUrl = licenseUrl;
}
public String getTitle() {
return title;
}
public String getDescription() {
return description;
}
public String getTermsOfServiceUrl() {
return termsOfServiceUrl;
}
public String getContact() {
return contact;
}
public String getLicense() {
return license;
}
public String getLicenseUrl() {
return licenseUrl;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy