![JAR search and dependency download from the Maven repository](/logo.png)
io.apicurio.datamodels.models.asyncapi.v22.AsyncApi22ServerImpl Maven / Gradle / Ivy
package io.apicurio.datamodels.models.asyncapi.v22;
import com.fasterxml.jackson.databind.JsonNode;
import io.apicurio.datamodels.models.Node;
import io.apicurio.datamodels.models.NodeImpl;
import io.apicurio.datamodels.models.ServerVariable;
import io.apicurio.datamodels.models.asyncapi.AsyncApiServerBindings;
import io.apicurio.datamodels.models.asyncapi.v22.visitors.AsyncApi22Visitor;
import io.apicurio.datamodels.models.visitors.Visitor;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
public class AsyncApi22ServerImpl extends NodeImpl implements AsyncApi22Server {
private String url;
private String protocol;
private String protocolVersion;
private String description;
private Map variables;
private List security;
private AsyncApiServerBindings bindings;
private Map extensions;
@Override
public String getUrl() {
return url;
}
@Override
public void setUrl(String value) {
this.url = value;
}
@Override
public String getProtocol() {
return protocol;
}
@Override
public void setProtocol(String value) {
this.protocol = value;
}
@Override
public String getProtocolVersion() {
return protocolVersion;
}
@Override
public void setProtocolVersion(String value) {
this.protocolVersion = value;
}
@Override
public String getDescription() {
return description;
}
@Override
public void setDescription(String value) {
this.description = value;
}
@Override
public AsyncApi22ServerVariable createServerVariable() {
AsyncApi22ServerVariableImpl node = new AsyncApi22ServerVariableImpl();
node.setParent(this);
return node;
}
@Override
public Map getVariables() {
return variables;
}
@Override
public void addVariable(String name, ServerVariable value) {
if (this.variables == null) {
this.variables = new LinkedHashMap<>();
}
this.variables.put(name, value);
}
@Override
public void clearVariables() {
if (this.variables != null) {
this.variables.clear();
}
}
@Override
public void removeVariable(String name) {
if (this.variables != null) {
this.variables.remove(name);
}
}
@Override
public AsyncApi22SecurityRequirement createSecurityRequirement() {
AsyncApi22SecurityRequirementImpl node = new AsyncApi22SecurityRequirementImpl();
node.setParent(this);
return node;
}
@Override
public List getSecurity() {
return security;
}
@Override
public void addSecurity(AsyncApi22SecurityRequirement value) {
if (this.security == null) {
this.security = new ArrayList<>();
}
this.security.add(value);
}
@Override
public void clearSecurity() {
if (this.security != null) {
this.security.clear();
}
}
@Override
public void removeSecurity(AsyncApi22SecurityRequirement value) {
if (this.security != null) {
this.security.remove(value);
}
}
@Override
public AsyncApiServerBindings getBindings() {
return bindings;
}
@Override
public void setBindings(AsyncApiServerBindings value) {
this.bindings = value;
}
@Override
public AsyncApi22ServerBindings createServerBindings() {
AsyncApi22ServerBindingsImpl node = new AsyncApi22ServerBindingsImpl();
node.setParent(this);
return node;
}
@Override
public Map getExtensions() {
return extensions;
}
@Override
public void addExtension(String name, JsonNode value) {
if (this.extensions == null) {
this.extensions = new LinkedHashMap<>();
}
this.extensions.put(name, value);
}
@Override
public void clearExtensions() {
if (this.extensions != null) {
this.extensions.clear();
}
}
@Override
public void removeExtension(String name) {
if (this.extensions != null) {
this.extensions.remove(name);
}
}
@Override
public void accept(Visitor visitor) {
AsyncApi22Visitor viz = (AsyncApi22Visitor) visitor;
viz.visitServer(this);
}
@Override
public Node emptyClone() {
return new AsyncApi22ServerImpl();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy