![JAR search and dependency download from the Maven repository](/logo.png)
io.apicurio.datamodels.models.asyncapi.v21.AsyncApi21ParameterImpl Maven / Gradle / Ivy
package io.apicurio.datamodels.models.asyncapi.v21;
import com.fasterxml.jackson.databind.JsonNode;
import io.apicurio.datamodels.models.Node;
import io.apicurio.datamodels.models.NodeImpl;
import io.apicurio.datamodels.models.asyncapi.v21.visitors.AsyncApi21Visitor;
import io.apicurio.datamodels.models.visitors.Visitor;
import java.util.LinkedHashMap;
import java.util.Map;
public class AsyncApi21ParameterImpl extends NodeImpl implements AsyncApi21Parameter {
private String $ref;
private String description;
private AsyncApi21Schema schema;
private String location;
private Map extensions;
@Override
public String get$ref() {
return $ref;
}
@Override
public void set$ref(String value) {
this.$ref = value;
}
@Override
public String getDescription() {
return description;
}
@Override
public void setDescription(String value) {
this.description = value;
}
@Override
public AsyncApi21Schema getSchema() {
return schema;
}
@Override
public void setSchema(AsyncApi21Schema value) {
this.schema = value;
}
@Override
public AsyncApi21Schema createSchema() {
AsyncApi21SchemaImpl node = new AsyncApi21SchemaImpl();
node.setParent(this);
return node;
}
@Override
public String getLocation() {
return location;
}
@Override
public void setLocation(String value) {
this.location = value;
}
@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) {
AsyncApi21Visitor viz = (AsyncApi21Visitor) visitor;
viz.visitParameter(this);
}
@Override
public Node emptyClone() {
return new AsyncApi21ParameterImpl();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy