diff options
author | vasraz <vasyl.razinkov@est.tech> | 2022-07-27 11:44:52 +0100 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2022-08-19 14:39:23 +0000 |
commit | 1cb3596e003729d9fcbd2c5b3d426db6e575c7ce (patch) | |
tree | 35ac468c54603aebde269bb550cc8dd07157b201 /catalog-model | |
parent | 59d0b40c4106065ac659981f5c7ba460e45b3dec (diff) |
Support Inputs during Import Service
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Change-Id: Ifc761d607a5d3c11187486fec3133be44c2d38b0
Issue-ID: SDC-4082
Diffstat (limited to 'catalog-model')
-rw-r--r-- | catalog-model/src/main/java/org/openecomp/sdc/be/model/jsonjanusgraph/operations/TopologyTemplateOperation.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/catalog-model/src/main/java/org/openecomp/sdc/be/model/jsonjanusgraph/operations/TopologyTemplateOperation.java b/catalog-model/src/main/java/org/openecomp/sdc/be/model/jsonjanusgraph/operations/TopologyTemplateOperation.java index 91176a9ecb..4995bdc642 100644 --- a/catalog-model/src/main/java/org/openecomp/sdc/be/model/jsonjanusgraph/operations/TopologyTemplateOperation.java +++ b/catalog-model/src/main/java/org/openecomp/sdc/be/model/jsonjanusgraph/operations/TopologyTemplateOperation.java @@ -152,7 +152,7 @@ public class TopologyTemplateOperation extends ToscaElementOperation { return Either.right(associateInstProperties); } StorageOperationStatus associateInstInputs = associateInstInputsToComponent(topologyTemplateVertex, topologyTemplate); - if (associateInstProperties != StorageOperationStatus.OK) { + if (associateInstInputs != StorageOperationStatus.OK) { return Either.right(associateInstInputs); } StorageOperationStatus associateInstGroups = associateInstGroupsToComponent(topologyTemplateVertex, topologyTemplate); @@ -184,7 +184,7 @@ public class TopologyTemplateOperation extends ToscaElementOperation { return Either.right(associateInterfaces); } StorageOperationStatus associatePathProperties = associateForwardingPathToResource(topologyTemplateVertex, topologyTemplate); - if (associateCapProperties != StorageOperationStatus.OK) { + if (associatePathProperties != StorageOperationStatus.OK) { return Either.right(associatePathProperties); } final StorageOperationStatus associateServiceToModel = associateComponentToModel(topologyTemplateVertex, topologyTemplate, @@ -386,15 +386,15 @@ public class TopologyTemplateOperation extends ToscaElementOperation { } public StorageOperationStatus associateInstInterfacesToComponent( - GraphVertex nodeTypeVertex, - Map<String, MapInterfaceDataDefinition> instInterfaces + GraphVertex nodeTypeVertex, + Map<String, MapInterfaceDataDefinition> instInterfaces ) { if (instInterfaces != null && !instInterfaces.isEmpty()) { Either<GraphVertex, StorageOperationStatus> associateElementToData = associateElementToData( - nodeTypeVertex, - VertexTypeEnum.INST_INTERFACES, - EdgeLabelEnum.INST_INTERFACES, - instInterfaces); + nodeTypeVertex, + VertexTypeEnum.INST_INTERFACES, + EdgeLabelEnum.INST_INTERFACES, + instInterfaces); if (associateElementToData.isRight()) { return associateElementToData.right().value(); } |