io.apicurio.datamodels.models.asyncapi.v20.AsyncApi20MessageImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apicurio-data-models Show documentation
Show all versions of apicurio-data-models Show documentation
Open Source API Design Studio
The newest version!
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.asyncapi.AsyncApiCorrelationID;
import io.apicurio.datamodels.models.asyncapi.AsyncApiExternalDocumentation;
import io.apicurio.datamodels.models.asyncapi.AsyncApiMessageBindings;
import io.apicurio.datamodels.models.asyncapi.AsyncApiMessageTrait;
import io.apicurio.datamodels.models.asyncapi.AsyncApiTag;
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 AsyncApi20MessageImpl extends NodeImpl implements AsyncApi20Message {
private String $ref;
private List oneOf;
private AsyncApi20Schema headers;
private JsonNode payload;
private AsyncApiCorrelationID correlationId;
private String schemaFormat;
private String contentType;
private String name;
private String title;
private String summary;
private String description;
private List tags;
private AsyncApiExternalDocumentation externalDocs;
private AsyncApiMessageBindings bindings;
private Map examples;
private List traits;
private Map extensions;
@Override
public String get$ref() {
return $ref;
}
@Override
public void set$ref(String value) {
this.$ref = value;
}
@Override
public AsyncApi20Message createMessage() {
AsyncApi20MessageImpl node = new AsyncApi20MessageImpl();
node.setParent(this);
return node;
}
@Override
public List getOneOf() {
return oneOf;
}
@Override
public void addOneOf(AsyncApi20Message value) {
if (this.oneOf == null) {
this.oneOf = new ArrayList<>();
}
this.oneOf.add(value);
}
@Override
public void clearOneOf() {
if (this.oneOf != null) {
this.oneOf.clear();
}
}
@Override
public void removeOneOf(AsyncApi20Message value) {
if (this.oneOf != null) {
this.oneOf.remove(value);
}
}
@Override
public AsyncApi20Schema getHeaders() {
return headers;
}
@Override
public void setHeaders(AsyncApi20Schema value) {
this.headers = value;
}
@Override
public AsyncApi20Schema createSchema() {
AsyncApi20SchemaImpl node = new AsyncApi20SchemaImpl();
node.setParent(this);
return node;
}
@Override
public JsonNode getPayload() {
return payload;
}
@Override
public void setPayload(JsonNode value) {
this.payload = value;
}
@Override
public AsyncApiCorrelationID getCorrelationId() {
return correlationId;
}
@Override
public void setCorrelationId(AsyncApiCorrelationID value) {
this.correlationId = value;
}
@Override
public AsyncApi20CorrelationID createCorrelationID() {
AsyncApi20CorrelationIDImpl node = new AsyncApi20CorrelationIDImpl();
node.setParent(this);
return node;
}
@Override
public String getSchemaFormat() {
return schemaFormat;
}
@Override
public void setSchemaFormat(String value) {
this.schemaFormat = value;
}
@Override
public String getContentType() {
return contentType;
}
@Override
public void setContentType(String value) {
this.contentType = value;
}
@Override
public String getName() {
return name;
}
@Override
public void setName(String value) {
this.name = value;
}
@Override
public String getTitle() {
return title;
}
@Override
public void setTitle(String value) {
this.title = value;
}
@Override
public String getSummary() {
return summary;
}
@Override
public void setSummary(String value) {
this.summary = value;
}
@Override
public String getDescription() {
return description;
}
@Override
public void setDescription(String value) {
this.description = value;
}
@Override
public AsyncApi20Tag createTag() {
AsyncApi20TagImpl node = new AsyncApi20TagImpl();
node.setParent(this);
return node;
}
@Override
public List getTags() {
return tags;
}
@Override
public void addTag(AsyncApiTag value) {
if (this.tags == null) {
this.tags = new ArrayList<>();
}
this.tags.add(value);
}
@Override
public void clearTags() {
if (this.tags != null) {
this.tags.clear();
}
}
@Override
public void removeTag(AsyncApiTag value) {
if (this.tags != null) {
this.tags.remove(value);
}
}
@Override
public AsyncApiExternalDocumentation getExternalDocs() {
return externalDocs;
}
@Override
public void setExternalDocs(AsyncApiExternalDocumentation value) {
this.externalDocs = value;
}
@Override
public AsyncApi20ExternalDocumentation createExternalDocumentation() {
AsyncApi20ExternalDocumentationImpl node = new AsyncApi20ExternalDocumentationImpl();
node.setParent(this);
return node;
}
@Override
public AsyncApiMessageBindings getBindings() {
return bindings;
}
@Override
public void setBindings(AsyncApiMessageBindings value) {
this.bindings = value;
}
@Override
public AsyncApi20MessageBindings createMessageBindings() {
AsyncApi20MessageBindingsImpl node = new AsyncApi20MessageBindingsImpl();
node.setParent(this);
return node;
}
@Override
public Map getExamples() {
return examples;
}
@Override
public void setExamples(Map value) {
this.examples = value;
}
@Override
public AsyncApi20MessageTrait createMessageTrait() {
AsyncApi20MessageTraitImpl node = new AsyncApi20MessageTraitImpl();
node.setParent(this);
return node;
}
@Override
public List getTraits() {
return traits;
}
@Override
public void addTrait(AsyncApiMessageTrait value) {
if (this.traits == null) {
this.traits = new ArrayList<>();
}
this.traits.add(value);
}
@Override
public void clearTraits() {
if (this.traits != null) {
this.traits.clear();
}
}
@Override
public void removeTrait(AsyncApiMessageTrait value) {
if (this.traits != null) {
this.traits.remove(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) {
AsyncApi20Visitor viz = (AsyncApi20Visitor) visitor;
viz.visitMessage(this);
}
@Override
public Node emptyClone() {
return new AsyncApi20MessageImpl();
}
}