io.apicurio.datamodels.models.asyncapi.v22.AsyncApi22OperationImpl 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.v22;
import com.fasterxml.jackson.databind.JsonNode;
import io.apicurio.datamodels.models.ExternalDocumentation;
import io.apicurio.datamodels.models.Node;
import io.apicurio.datamodels.models.NodeImpl;
import io.apicurio.datamodels.models.asyncapi.AsyncApiOperationBindings;
import io.apicurio.datamodels.models.asyncapi.AsyncApiOperationTrait;
import io.apicurio.datamodels.models.asyncapi.AsyncApiTag;
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 AsyncApi22OperationImpl extends NodeImpl implements AsyncApi22Operation {
private String operationId;
private String summary;
private String description;
private List tags;
private ExternalDocumentation externalDocs;
private AsyncApiOperationBindings bindings;
private List traits;
private AsyncApi22Message message;
private Map extensions;
@Override
public String getOperationId() {
return operationId;
}
@Override
public void setOperationId(String value) {
this.operationId = 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 AsyncApi22Tag createTag() {
AsyncApi22TagImpl node = new AsyncApi22TagImpl();
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 ExternalDocumentation getExternalDocs() {
return externalDocs;
}
@Override
public void setExternalDocs(ExternalDocumentation value) {
this.externalDocs = value;
}
@Override
public AsyncApi22ExternalDocumentation createExternalDocumentation() {
AsyncApi22ExternalDocumentationImpl node = new AsyncApi22ExternalDocumentationImpl();
node.setParent(this);
return node;
}
@Override
public AsyncApiOperationBindings getBindings() {
return bindings;
}
@Override
public void setBindings(AsyncApiOperationBindings value) {
this.bindings = value;
}
@Override
public AsyncApi22OperationBindings createOperationBindings() {
AsyncApi22OperationBindingsImpl node = new AsyncApi22OperationBindingsImpl();
node.setParent(this);
return node;
}
@Override
public AsyncApi22OperationTrait createOperationTrait() {
AsyncApi22OperationTraitImpl node = new AsyncApi22OperationTraitImpl();
node.setParent(this);
return node;
}
@Override
public List getTraits() {
return traits;
}
@Override
public void addTrait(AsyncApiOperationTrait 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(AsyncApiOperationTrait value) {
if (this.traits != null) {
this.traits.remove(value);
}
}
@Override
public AsyncApi22Message getMessage() {
return message;
}
@Override
public void setMessage(AsyncApi22Message value) {
this.message = value;
}
@Override
public AsyncApi22Message createMessage() {
AsyncApi22MessageImpl node = new AsyncApi22MessageImpl();
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.visitOperation(this);
}
@Override
public Node emptyClone() {
return new AsyncApi22OperationImpl();
}
}