
io.swagger.v3.oas.models.servers.Server Maven / Gradle / Ivy
package io.swagger.v3.oas.models.servers;
import io.swagger.v3.oas.models.annotations.OpenAPI31;
import java.util.Map;
import java.util.Objects;
/**
* Server
*
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.1/versions/3.0.1.md#serverObject"
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.1.0/versions/3.1.0.md#serverObject"
*/
public class Server {
private String url = null;
private String description = null;
private ServerVariables variables = null;
private Map extensions = null;
/**
* returns the url property from a Server instance.
*
* @return String url
**/
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public Server url(String url) {
this.url = url;
return this;
}
/**
* returns the description property from a Server instance.
*
* @return String description
**/
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Server description(String description) {
this.description = description;
return this;
}
/**
* returns the variables property from a Server instance.
*
* @return ServerVariables variables
**/
public ServerVariables getVariables() {
return variables;
}
public void setVariables(ServerVariables variables) {
this.variables = variables;
}
public Server variables(ServerVariables variables) {
this.variables = variables;
return this;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
var server = (Server) o;
return Objects.equals(this.url, server.url) &&
Objects.equals(this.description, server.description) &&
Objects.equals(this.variables, server.variables) &&
Objects.equals(this.extensions, server.extensions);
}
@Override
public int hashCode() {
return Objects.hash(url, description, variables, extensions);
}
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 Server extensions(Map extensions) {
this.extensions = extensions;
return this;
}
@Override
public String toString() {
return "class Server {\n" +
" url: " + toIndentedString(url) + "\n" +
" description: " + toIndentedString(description) + "\n" +
" variables: " + toIndentedString(variables) + "\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