io.apicurio.datamodels.models.asyncapi.v24.visitors.AsyncApi24Traverser 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.v24.visitors;
import io.apicurio.datamodels.models.Components;
import io.apicurio.datamodels.models.Contact;
import io.apicurio.datamodels.models.Document;
import io.apicurio.datamodels.models.ExternalDocumentation;
import io.apicurio.datamodels.models.Info;
import io.apicurio.datamodels.models.License;
import io.apicurio.datamodels.models.OAuthFlow;
import io.apicurio.datamodels.models.OAuthFlows;
import io.apicurio.datamodels.models.Operation;
import io.apicurio.datamodels.models.Parameter;
import io.apicurio.datamodels.models.Schema;
import io.apicurio.datamodels.models.SecurityRequirement;
import io.apicurio.datamodels.models.SecurityScheme;
import io.apicurio.datamodels.models.Server;
import io.apicurio.datamodels.models.ServerVariable;
import io.apicurio.datamodels.models.Tag;
import io.apicurio.datamodels.models.asyncapi.AsyncApiBinding;
import io.apicurio.datamodels.models.asyncapi.AsyncApiChannelBindings;
import io.apicurio.datamodels.models.asyncapi.AsyncApiChannelItem;
import io.apicurio.datamodels.models.asyncapi.AsyncApiChannels;
import io.apicurio.datamodels.models.asyncapi.AsyncApiCorrelationID;
import io.apicurio.datamodels.models.asyncapi.AsyncApiMessage;
import io.apicurio.datamodels.models.asyncapi.AsyncApiMessageBindings;
import io.apicurio.datamodels.models.asyncapi.AsyncApiMessageExample;
import io.apicurio.datamodels.models.asyncapi.AsyncApiMessageTrait;
import io.apicurio.datamodels.models.asyncapi.AsyncApiOneOfMessages;
import io.apicurio.datamodels.models.asyncapi.AsyncApiOperationBindings;
import io.apicurio.datamodels.models.asyncapi.AsyncApiOperationTrait;
import io.apicurio.datamodels.models.asyncapi.AsyncApiParameters;
import io.apicurio.datamodels.models.asyncapi.AsyncApiServerBindings;
import io.apicurio.datamodels.models.asyncapi.AsyncApiServers;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24ChannelBindings;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24ChannelItem;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24Channels;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24Components;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24Document;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24Info;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24Message;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24MessageBindings;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24MessageTrait;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24OAuthFlows;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24OneOfMessages;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24Operation;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24OperationBindings;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24OperationTrait;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24Parameter;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24Parameters;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24Schema;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24SecurityScheme;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24Server;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24ServerBindings;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24Servers;
import io.apicurio.datamodels.models.asyncapi.v24.AsyncApi24Tag;
import io.apicurio.datamodels.models.visitors.AbstractTraverser;
import io.apicurio.datamodels.models.visitors.Visitor;
public class AsyncApi24Traverser extends AbstractTraverser implements AsyncApi24Visitor {
public AsyncApi24Traverser(Visitor visitor) {
super(visitor);
}
@Override
public void visitOneOfMessages(AsyncApiOneOfMessages node) {
node.accept(this.visitor);
AsyncApi24OneOfMessages model = (AsyncApi24OneOfMessages) node;
this.traverseList("oneOf", model.getOneOf());
}
@Override
public void visitChannelItem(AsyncApiChannelItem node) {
node.accept(this.visitor);
AsyncApi24ChannelItem model = (AsyncApi24ChannelItem) node;
this.traverseNode("subscribe", model.getSubscribe());
this.traverseNode("publish", model.getPublish());
this.traverseNode("parameters", model.getParameters());
this.traverseNode("bindings", model.getBindings());
}
@Override
public void visitMessageExample(AsyncApiMessageExample node) {
node.accept(this.visitor);
}
@Override
public void visitSecurityRequirement(SecurityRequirement node) {
node.accept(this.visitor);
}
@Override
public void visitMessageBindings(AsyncApiMessageBindings node) {
node.accept(this.visitor);
AsyncApi24MessageBindings model = (AsyncApi24MessageBindings) node;
this.traverseNode("http", model.getHttp());
this.traverseNode("ws", model.getWs());
this.traverseNode("kafka", model.getKafka());
this.traverseNode("anypointmq", model.getAnypointmq());
this.traverseNode("amqp", model.getAmqp());
this.traverseNode("amqp1", model.getAmqp1());
this.traverseNode("mqtt", model.getMqtt());
this.traverseNode("mqtt5", model.getMqtt5());
this.traverseNode("nats", model.getNats());
this.traverseNode("jms", model.getJms());
this.traverseNode("sns", model.getSns());
this.traverseNode("solace", model.getSolace());
this.traverseNode("sqs", model.getSqs());
this.traverseNode("stomp", model.getStomp());
this.traverseNode("redis", model.getRedis());
this.traverseNode("mercure", model.getMercure());
this.traverseNode("ibmmq", model.getIbmmq());
}
@Override
public void visitOAuthFlow(OAuthFlow node) {
node.accept(this.visitor);
}
@Override
public void visitOperationBindings(AsyncApiOperationBindings node) {
node.accept(this.visitor);
AsyncApi24OperationBindings model = (AsyncApi24OperationBindings) node;
this.traverseNode("http", model.getHttp());
this.traverseNode("ws", model.getWs());
this.traverseNode("kafka", model.getKafka());
this.traverseNode("anypointmq", model.getAnypointmq());
this.traverseNode("amqp", model.getAmqp());
this.traverseNode("amqp1", model.getAmqp1());
this.traverseNode("mqtt", model.getMqtt());
this.traverseNode("mqtt5", model.getMqtt5());
this.traverseNode("nats", model.getNats());
this.traverseNode("jms", model.getJms());
this.traverseNode("sns", model.getSns());
this.traverseNode("solace", model.getSolace());
this.traverseNode("sqs", model.getSqs());
this.traverseNode("stomp", model.getStomp());
this.traverseNode("redis", model.getRedis());
this.traverseNode("mercure", model.getMercure());
}
@Override
public void visitComponents(Components node) {
node.accept(this.visitor);
AsyncApi24Components model = (AsyncApi24Components) node;
this.traverseMap("schemas", model.getSchemas());
this.traverseMap("servers", model.getServers());
this.traverseMap("serverVariables", model.getServerVariables());
this.traverseMap("channels", model.getChannels());
this.traverseMap("messages", model.getMessages());
this.traverseMap("securitySchemes", model.getSecuritySchemes());
this.traverseMap("parameters", model.getParameters());
this.traverseMap("correlationIds", model.getCorrelationIds());
this.traverseMap("operationTraits", model.getOperationTraits());
this.traverseMap("messageTraits", model.getMessageTraits());
this.traverseMap("serverBindings", model.getServerBindings());
this.traverseMap("channelBindings", model.getChannelBindings());
this.traverseMap("operationBindings", model.getOperationBindings());
this.traverseMap("messageBindings", model.getMessageBindings());
}
@Override
public void visitChannelBindings(AsyncApiChannelBindings node) {
node.accept(this.visitor);
AsyncApi24ChannelBindings model = (AsyncApi24ChannelBindings) node;
this.traverseNode("http", model.getHttp());
this.traverseNode("ws", model.getWs());
this.traverseNode("kafka", model.getKafka());
this.traverseNode("anypointmq", model.getAnypointmq());
this.traverseNode("amqp", model.getAmqp());
this.traverseNode("amqp1", model.getAmqp1());
this.traverseNode("mqtt", model.getMqtt());
this.traverseNode("mqtt5", model.getMqtt5());
this.traverseNode("nats", model.getNats());
this.traverseNode("jms", model.getJms());
this.traverseNode("sns", model.getSns());
this.traverseNode("solace", model.getSolace());
this.traverseNode("sqs", model.getSqs());
this.traverseNode("stomp", model.getStomp());
this.traverseNode("redis", model.getRedis());
this.traverseNode("mercure", model.getMercure());
this.traverseNode("ibmmq", model.getIbmmq());
}
@Override
public void visitParameters(AsyncApiParameters node) {
node.accept(this.visitor);
AsyncApi24Parameters model = (AsyncApi24Parameters) node;
this.traverseMappedNode(model);
}
@Override
public void visitServerVariable(ServerVariable node) {
node.accept(this.visitor);
}
@Override
public void visitMessage(AsyncApiMessage node) {
node.accept(this.visitor);
AsyncApi24Message model = (AsyncApi24Message) node;
this.traverseList("oneOf", model.getOneOf());
this.traverseNode("headers", model.getHeaders());
this.traverseNode("correlationId", model.getCorrelationId());
this.traverseList("tags", model.getTags());
this.traverseNode("externalDocs", model.getExternalDocs());
this.traverseNode("bindings", model.getBindings());
this.traverseNode("examples", model.getExamples());
this.traverseList("traits", model.getTraits());
}
@Override
public void visitOperationTrait(AsyncApiOperationTrait node) {
node.accept(this.visitor);
AsyncApi24OperationTrait model = (AsyncApi24OperationTrait) node;
this.traverseList("security", model.getSecurity());
this.traverseList("tags", model.getTags());
this.traverseNode("externalDocs", model.getExternalDocs());
this.traverseNode("bindings", model.getBindings());
}
@Override
public void visitServer(Server node) {
node.accept(this.visitor);
AsyncApi24Server model = (AsyncApi24Server) node;
this.traverseMap("variables", model.getVariables());
this.traverseList("security", model.getSecurity());
this.traverseNode("bindings", model.getBindings());
}
@Override
public void visitOAuthFlows(OAuthFlows node) {
node.accept(this.visitor);
AsyncApi24OAuthFlows model = (AsyncApi24OAuthFlows) node;
this.traverseNode("implicit", model.getImplicit());
this.traverseNode("password", model.getPassword());
this.traverseNode("clientCredentials", model.getClientCredentials());
this.traverseNode("authorizationCode", model.getAuthorizationCode());
}
@Override
public void visitServerBindings(AsyncApiServerBindings node) {
node.accept(this.visitor);
AsyncApi24ServerBindings model = (AsyncApi24ServerBindings) node;
this.traverseNode("http", model.getHttp());
this.traverseNode("ws", model.getWs());
this.traverseNode("kafka", model.getKafka());
this.traverseNode("anypointmq", model.getAnypointmq());
this.traverseNode("amqp", model.getAmqp());
this.traverseNode("amqp1", model.getAmqp1());
this.traverseNode("mqtt", model.getMqtt());
this.traverseNode("mqtt5", model.getMqtt5());
this.traverseNode("nats", model.getNats());
this.traverseNode("jms", model.getJms());
this.traverseNode("sns", model.getSns());
this.traverseNode("solace", model.getSolace());
this.traverseNode("sqs", model.getSqs());
this.traverseNode("stomp", model.getStomp());
this.traverseNode("redis", model.getRedis());
this.traverseNode("mercure", model.getMercure());
this.traverseNode("ibmmq", model.getIbmmq());
}
@Override
public void visitCorrelationID(AsyncApiCorrelationID node) {
node.accept(this.visitor);
}
@Override
public void visitServers(AsyncApiServers node) {
node.accept(this.visitor);
AsyncApi24Servers model = (AsyncApi24Servers) node;
this.traverseMappedNode(model);
}
@Override
public void visitChannels(AsyncApiChannels node) {
node.accept(this.visitor);
AsyncApi24Channels model = (AsyncApi24Channels) node;
this.traverseMappedNode(model);
}
@Override
public void visitMessageTrait(AsyncApiMessageTrait node) {
node.accept(this.visitor);
AsyncApi24MessageTrait model = (AsyncApi24MessageTrait) node;
this.traverseNode("headers", model.getHeaders());
this.traverseNode("correlationId", model.getCorrelationId());
this.traverseList("tags", model.getTags());
this.traverseNode("externalDocs", model.getExternalDocs());
this.traverseNode("bindings", model.getBindings());
}
@Override
public void visitBinding(AsyncApiBinding node) {
node.accept(this.visitor);
}
@Override
public void visitInfo(Info node) {
node.accept(this.visitor);
AsyncApi24Info model = (AsyncApi24Info) node;
this.traverseNode("contact", model.getContact());
this.traverseNode("license", model.getLicense());
}
@Override
public void visitContact(Contact node) {
node.accept(this.visitor);
}
@Override
public void visitTag(Tag node) {
node.accept(this.visitor);
AsyncApi24Tag model = (AsyncApi24Tag) node;
this.traverseNode("externalDocs", model.getExternalDocs());
}
@Override
public void visitSecurityScheme(SecurityScheme node) {
node.accept(this.visitor);
AsyncApi24SecurityScheme model = (AsyncApi24SecurityScheme) node;
this.traverseNode("flows", model.getFlows());
}
@Override
public void visitExternalDocumentation(ExternalDocumentation node) {
node.accept(this.visitor);
}
@Override
public void visitLicense(License node) {
node.accept(this.visitor);
}
@Override
public void visitDocument(Document node) {
node.accept(this.visitor);
AsyncApi24Document model = (AsyncApi24Document) node;
this.traverseNode("info", model.getInfo());
this.traverseNode("servers", model.getServers());
this.traverseNode("channels", model.getChannels());
this.traverseNode("components", model.getComponents());
this.traverseList("tags", model.getTags());
this.traverseNode("externalDocs", model.getExternalDocs());
}
@Override
public void visitParameter(Parameter node) {
node.accept(this.visitor);
AsyncApi24Parameter model = (AsyncApi24Parameter) node;
this.traverseNode("schema", model.getSchema());
}
@Override
public void visitOperation(Operation node) {
node.accept(this.visitor);
AsyncApi24Operation model = (AsyncApi24Operation) node;
this.traverseList("security", model.getSecurity());
this.traverseList("tags", model.getTags());
this.traverseNode("externalDocs", model.getExternalDocs());
this.traverseNode("bindings", model.getBindings());
this.traverseList("traits", model.getTraits());
this.traverseNode("message", model.getMessage());
}
@Override
public void visitSchema(Schema node) {
node.accept(this.visitor);
AsyncApi24Schema model = (AsyncApi24Schema) node;
this.traverseNode("if", model.getIf());
this.traverseNode("then", model.getThen());
this.traverseNode("else", model.getElse());
this.traverseMap("properties", model.getProperties());
this.traverseUnion("additionalProperties", model.getAdditionalProperties());
this.traverseNode("additionalItems", model.getAdditionalItems());
this.traverseUnion("items", model.getItems());
this.traverseNode("propertyNames", model.getPropertyNames());
this.traverseNode("contains", model.getContains());
this.traverseList("allOf", model.getAllOf());
this.traverseList("oneOf", model.getOneOf());
this.traverseList("anyOf", model.getAnyOf());
this.traverseNode("not", model.getNot());
this.traverseNode("externalDocs", model.getExternalDocs());
}
}