org.openapi4j.parser.model.v3.Server Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-parser Show documentation
Show all versions of openapi-parser Show documentation
openapi4j schema parser & validator
package org.openapi4j.parser.model.v3;
import org.openapi4j.core.model.OAIContext;
import java.util.HashMap;
import java.util.Map;
@SuppressWarnings("unused")
public class Server extends AbsExtendedOpenApiSchema {
private String url;
private String description;
private Map variables;
// Url
public String getUrl() {
return url;
}
public Server setUrl(String url) {
this.url = url;
return this;
}
// Description
public String getDescription() {
return description;
}
public Server setDescription(String description) {
this.description = description;
return this;
}
// ServerVariable
public Map getVariables() {
return variables;
}
public Server setVariables(Map variables) {
this.variables = variables;
return this;
}
public boolean hasVariable(String name) {
return mapHas(variables, name);
}
public ServerVariable getVariable(String name) {
return mapGet(variables, name);
}
public Server setVariable(String name, ServerVariable serverVariable) {
if (variables == null) {
variables = new HashMap<>();
}
variables.put(name, serverVariable);
return this;
}
public Server removeVariable(String name) {
mapRemove(variables, name);
return this;
}
@Override
public Server copy(OAIContext context, boolean followRefs) {
Server copy = new Server();
copy.setUrl(getUrl());
copy.setDescription(getDescription());
copy.setVariables(copyMap(getVariables(), context, followRefs));
copy.setExtensions(copyMap(getExtensions()));
return copy;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy