use of io.apicurio.datamodels.asyncapi.models.AaiOperationBindingsDefinition 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);
}
Aggregations