![JAR search and dependency download from the Maven repository](/logo.png)
io.apicurio.datamodels.models.asyncapi.v20.AsyncApi20ServerImpl Maven / Gradle / Ivy
package io.apicurio.datamodels.models.asyncapi.v20;
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.v20.visitors.AsyncApi20Visitor;
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 AsyncApi20ServerImpl extends NodeImpl implements AsyncApi20Server {
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 AsyncApi20ServerVariable createServerVariable() {
AsyncApi20ServerVariableImpl node = new AsyncApi20ServerVariableImpl();
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 AsyncApi20SecurityRequirement createSecurityRequirement() {
AsyncApi20SecurityRequirementImpl node = new AsyncApi20SecurityRequirementImpl();
node.setParent(this);
return node;
}
@Override
public List getSecurity() {
return security;
}
@Override
public void addSecurity(AsyncApi20SecurityRequirement 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(AsyncApi20SecurityRequirement 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 AsyncApi20ServerBindings createServerBindings() {
AsyncApi20ServerBindingsImpl node = new AsyncApi20ServerBindingsImpl();
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) {
AsyncApi20Visitor viz = (AsyncApi20Visitor) visitor;
viz.visitServer(this);
}
@Override
public Node emptyClone() {
return new AsyncApi20ServerImpl();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy