
io.swagger.v3.oas.models.info.Info Maven / Gradle / Ivy
package io.swagger.v3.oas.models.info;
import io.swagger.v3.oas.models.annotations.OpenAPI31;
import java.util.Map;
import java.util.Objects;
/**
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.1/versions/3.0.1.md#infoObject"
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.1.0/versions/3.1.0.md#infoObject"
*/
public class Info {
private String title = null;
private String description = null;
private String termsOfService = null;
private Contact contact = null;
private License license = null;
private String version = null;
private Map extensions = null;
/**
* @since 2.2.0 (OpenAPI 3.1.0)
*/
@OpenAPI31
private String summary = null;
/**
* returns the title property from a Info instance.
*
* @return String title
**/
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public Info title(String title) {
this.title = title;
return this;
}
/**
* returns the description property from a Info instance.
*
* @return String description
**/
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Info description(String description) {
this.description = description;
return this;
}
/**
* returns the termsOfService property from a Info instance.
*
* @return String termsOfService
**/
public String getTermsOfService() {
return termsOfService;
}
public void setTermsOfService(String termsOfService) {
this.termsOfService = termsOfService;
}
public Info termsOfService(String termsOfService) {
this.termsOfService = termsOfService;
return this;
}
/**
* returns the contact property from a Info instance.
*
* @return Contact contact
**/
public Contact getContact() {
return contact;
}
public void setContact(Contact contact) {
this.contact = contact;
}
public Info contact(Contact contact) {
this.contact = contact;
return this;
}
/**
* returns the license property from a Info instance.
*
* @return License license
**/
public License getLicense() {
return license;
}
public void setLicense(License license) {
this.license = license;
}
public Info license(License license) {
this.license = license;
return this;
}
/**
* returns the version property from a Info instance.
*
* @return String version
**/
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public Info version(String version) {
this.version = version;
return this;
}
/**
* returns the summary property from a Info instance.
*
* @return String
* @since 2.2.0 (OpenAPI 3.1.0)
**/
@OpenAPI31
public String getSummary() {
return summary;
}
/**
* @since 2.2.0 (OpenAPI 3.1.0)
*/
@OpenAPI31
public void setSummary(String summary) {
this.summary = summary;
}
/**
* @since 2.2.0 (OpenAPI 3.1.0)
*/
@OpenAPI31
public Info summary(String summary) {
this.summary = summary;
return this;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
var info = (Info) o;
return Objects.equals(this.title, info.title) &&
Objects.equals(this.description, info.description) &&
Objects.equals(this.termsOfService, info.termsOfService) &&
Objects.equals(this.contact, info.contact) &&
Objects.equals(this.license, info.license) &&
Objects.equals(this.version, info.version) &&
Objects.equals(this.extensions, info.extensions) &&
Objects.equals(this.summary, info.summary);
}
@Override
public int hashCode() {
return Objects.hash(title, description, termsOfService, contact, license, version, extensions, summary);
}
public Map getExtensions() {
return extensions;
}
public void setExtensions(Map extensions) {
this.extensions = extensions;
}
public void addExtension(String name, Object value) {
if (name == null || !name.startsWith("x-")) {
return;
}
if (this.extensions == null) {
this.extensions = new java.util.LinkedHashMap<>();
}
this.extensions.put(name, value);
}
@OpenAPI31
public void addExtension31(String name, Object value) {
if (name != null && (name.startsWith("x-oas-") || name.startsWith("x-oai-"))) {
return;
}
addExtension(name, value);
}
public Info extensions(Map extensions) {
this.extensions = extensions;
return this;
}
@Override
public String toString() {
return "class Info {\n" +
" title: " + toIndentedString(title) + "\n" +
" description: " + toIndentedString(description) + "\n" +
" summary: " + toIndentedString(summary) + "\n" +
" termsOfService: " + toIndentedString(termsOfService) + "\n" +
" contact: " + toIndentedString(contact) + "\n" +
" license: " + toIndentedString(license) + "\n" +
" version: " + toIndentedString(version) + "\n" +
"}";
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy