use of io.apicurio.datamodels.asyncapi.models.AaiMessageTraitDefinition in project apicurio-data-models by Apicurio.
the class AaiDataModelReader method readComponents.
public void readComponents(Object json, Components node) {
AaiComponents components = (AaiComponents) node;
// schemas
final Object _jsonSchemas = JsonCompat.consumeProperty(json, Constants.PROP_SCHEMAS);
if (_jsonSchemas != null) {
JsonCompat.keys(_jsonSchemas).forEach(key -> {
Object value = JsonCompat.consumeProperty(_jsonSchemas, key);
AaiSchema schemaModel = nodeFactory.createSchemaDefinition(node, key);
this.readSchema(value, schemaModel);
components.addSchemaDefinition(key, schemaModel);
});
}
// messages
final Object _jsonMessages = JsonCompat.consumeProperty(json, Constants.PROP_MESSAGES);
if (_jsonMessages != null) {
JsonCompat.keys(_jsonMessages).forEach(key -> {
Object jsonValue = JsonCompat.consumeProperty(_jsonMessages, key);
AaiMessage value = nodeFactory.createMessage(node, key);
this.readMessage(jsonValue, value);
components.addMessage(key, value);
});
}
// security schemes
final Object _jsonSecuritySchemes = JsonCompat.consumeProperty(json, Constants.PROP_SECURITY_SCHEMES);
if (_jsonSecuritySchemes != null) {
JsonCompat.keys(_jsonSecuritySchemes).forEach(key -> {
Object jsonValue = JsonCompat.consumeProperty(_jsonSecuritySchemes, key);
AaiSecurityScheme value = nodeFactory.createSecurityScheme(node, key);
this.readSecurityScheme(jsonValue, value);
components.addSecurityScheme(key, value);
});
}
// parameters
final Object _jsonParams = JsonCompat.consumeProperty(json, Constants.PROP_PARAMETERS);
if (_jsonParams != null) {
JsonCompat.keys(_jsonParams).forEach(key -> {
Object jsonValue = JsonCompat.consumeProperty(_jsonParams, key);
AaiParameter value = nodeFactory.createParameter(node, key);
this.readAaiParameter(jsonValue, value);
components.addParameter(key, value);
});
}
// correlationIds
final Object _jsonCorrelationIds = JsonCompat.consumeProperty(json, Constants.PROP_CORRELATION_IDS);
if (_jsonCorrelationIds != null) {
JsonCompat.keys(_jsonCorrelationIds).forEach(key -> {
Object jsonValue = JsonCompat.consumeProperty(_jsonCorrelationIds, key);
AaiCorrelationId value = nodeFactory.createCorrelationId(node, key);
this.readCorrelationId(jsonValue, value);
components.addCorrelationId(key, value);
});
}
// operation traits
final Object _jsonOpTraits = JsonCompat.consumeProperty(json, Constants.PROP_OPERATION_TRAITS);
if (_jsonOpTraits != null) {
JsonCompat.keys(_jsonOpTraits).forEach(key -> {
Object jsonValue = JsonCompat.consumeProperty(_jsonOpTraits, key);
AaiOperationTraitDefinition traitDef = nodeFactory.createOperationTraitDefinition(node, key);
this.readOperationTrait(jsonValue, traitDef);
components.addOperationTraitDefinition(key, traitDef);
});
}
// message traits
final Object _jsonMessageTraits = JsonCompat.consumeProperty(json, Constants.PROP_MESSAGE_TRAITS);
if (_jsonMessageTraits != null) {
JsonCompat.keys(_jsonMessageTraits).forEach(key -> {
Object jsonValue = JsonCompat.consumeProperty(_jsonMessageTraits, key);
AaiMessageTraitDefinition traitDef = nodeFactory.createMessageTraitDefinition(node, key);
this.readMessageTrait(jsonValue, traitDef);
components.addMessageTraitDefinition(key, traitDef);
});
}
// server bindings
final Object _jsonServerBindings = JsonCompat.consumeProperty(json, Constants.PROP_SERVER_BINDINGS);
if (_jsonServerBindings != null) {
JsonCompat.keys(_jsonServerBindings).forEach(key -> {
Object jsonValue = JsonCompat.consumeProperty(_jsonServerBindings, key);
AaiServerBindingsDefinition bindingsDef = nodeFactory.createServerBindingsDefinition(node, key);
this.readServerBindings(jsonValue, bindingsDef);
components.addServerBindingDefinition(key, bindingsDef);
});
}
// channel bindings
final Object _jsonChannelBindings = JsonCompat.consumeProperty(json, Constants.PROP_CHANNEL_BINDINGS);
if (_jsonChannelBindings != null) {
JsonCompat.keys(_jsonChannelBindings).forEach(key -> {
Object jsonValue = JsonCompat.consumeProperty(_jsonChannelBindings, key);
AaiChannelBindingsDefinition bindingsDef = nodeFactory.createChannelBindingsDefinition(node, key);
this.readChannelBindings(jsonValue, bindingsDef);
components.addChannelBindingDefinition(key, bindingsDef);
});
}
// operation bindings
final Object _jsonOpBindings = JsonCompat.consumeProperty(json, Constants.PROP_OPERATION_BINDINGS);
if (_jsonOpBindings != null) {
JsonCompat.keys(_jsonOpBindings).forEach(key -> {
Object jsonValue = JsonCompat.consumeProperty(_jsonOpBindings, key);
AaiOperationBindingsDefinition bindingsDef = nodeFactory.createOperationBindingsDefinition(node, key);
this.readOperationBindings(jsonValue, bindingsDef);
components.addOperationBindingDefinition(key, bindingsDef);
});
}
// message bindings
final Object _jsonMessageBindings = JsonCompat.consumeProperty(json, Constants.PROP_MESSAGE_BINDINGS);
if (_jsonMessageBindings != null) {
JsonCompat.keys(_jsonMessageBindings).forEach(key -> {
Object jsonValue = JsonCompat.consumeProperty(_jsonMessageBindings, key);
AaiMessageBindingsDefinition bindingsDef = nodeFactory.createMessageBindingsDefinition(node, key);
this.readMessageBindings(jsonValue, bindingsDef);
components.addMessageBindingDefinition(key, bindingsDef);
});
}
this.readExtensions(json, node);
this.readExtraProperties(json, node);
}
use of io.apicurio.datamodels.asyncapi.models.AaiMessageTraitDefinition in project apicurio-data-models by Apicurio.
the class RenameMessageTraitDefinitionCommand method renameMessageTraitDefinition.
protected boolean renameMessageTraitDefinition(AaiDocument document, String fromName, String toName) {
Aai20Document doc20 = (Aai20Document) document;
if (this.isNullOrUndefined(doc20.components) || this.isNullOrUndefined(doc20.components.messageTraits)) {
return false;
}
if (ModelUtils.isDefined(doc20.components.getMessageTraitDefinition(toName))) {
return false;
}
AaiMessageTraitDefinition traitDef = doc20.components.removeMessageTraitDefinition(fromName);
traitDef.rename(toName);
doc20.components.addMessageTraitDefinition(toName, traitDef);
return true;
}
use of io.apicurio.datamodels.asyncapi.models.AaiMessageTraitDefinition in project apicurio-data-models by Apicurio.
the class NewMessageTraitDefinitionCommand method execute.
@Override
public void execute(Document document) {
LoggerCompat.info("[NewMessageTraitDefinitionCommand] Executing.");
Aai20Document doc20 = (Aai20Document) document;
if (this.isNullOrUndefined(doc20.components)) {
doc20.components = doc20.createComponents();
this._nullComponents = true;
}
this._nullComponents = false;
Aai20Components components = (Aai20Components) doc20.components;
if (this.isNullOrUndefined(components.getMessageTraitDefinition(_newName))) {
Aai20NodeFactory factory = new Aai20NodeFactory();
AaiMessageTraitDefinition traitDef = factory.createMessageTraitDefinition(components, _newName);
if (!this.isNullOrUndefined(_newDescription != null)) {
traitDef.description = _newDescription;
}
components.addMessageTraitDefinition(_newName, traitDef);
this._defExisted = false;
} else {
this._defExisted = true;
}
}
use of io.apicurio.datamodels.asyncapi.models.AaiMessageTraitDefinition in project apicurio-data-models by Apicurio.
the class DeleteMessageTraitDefinitionCommand method execute.
@Override
public void execute(Document document) {
LoggerCompat.info("[DeleteMessageTraitDefinitionCommand] Executing.");
Aai20Document doc20 = (Aai20Document) document;
if (ModelUtils.isDefined(doc20.components)) {
AaiMessageTraitDefinition traitDef = doc20.components.removeMessageTraitDefinition(_name);
this._oldDefinition = Library.writeNode(traitDef);
}
}
use of io.apicurio.datamodels.asyncapi.models.AaiMessageTraitDefinition in project apicurio-data-models by Apicurio.
the class DeleteMessageTraitDefinitionCommand method undo.
@Override
public void undo(Document document) {
LoggerCompat.info("[DeleteMessageTraitDefinitionCommand] Reverting.");
if (this.isNullOrUndefined(this._oldDefinition)) {
return;
}
Aai20Document doc20 = (Aai20Document) document;
if (ModelUtils.isDefined(doc20.components)) {
Aai20NodeFactory factory = new Aai20NodeFactory();
AaiMessageTraitDefinition traitDef = factory.createMessageTraitDefinition(doc20.components, _name);
Library.readNode(_oldDefinition, traitDef);
doc20.components.addMessageTraitDefinition(_name, traitDef);
}
}
Aggregations