diff options
author | vasraz <vasyl.razinkov@est.tech> | 2021-02-18 13:13:50 +0000 |
---|---|---|
committer | vasraz <vasyl.razinkov@est.tech> | 2021-02-18 13:13:50 +0000 |
commit | fee0f29212b10c940ec4b19fc8f4794d06964eee (patch) | |
tree | 794d90ad0c299e85143e1ffee55916078285c4ef /asdctool/src/main/java/org | |
parent | 26e5029d922779fd7e786c1a31b6b37492132388 (diff) |
Implement Attributes/Outputs BE (part 1)
This commit includes support for:
- import VFC with attributes
- add VFC to VF/Service
- show attributes in VF/Service
Change-Id: I2cda966ab878ae7aee4bcfecf266c5c251c91164
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Issue-ID: SDC-3448
Signed-off-by: JulienBe <julien.bertozzi@intl.att.com>
Diffstat (limited to 'asdctool/src/main/java/org')
-rw-r--r-- | asdctool/src/main/java/org/openecomp/sdc/asdctool/migration/tasks/mig1806/ForwardPathMigration.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asdctool/src/main/java/org/openecomp/sdc/asdctool/migration/tasks/mig1806/ForwardPathMigration.java b/asdctool/src/main/java/org/openecomp/sdc/asdctool/migration/tasks/mig1806/ForwardPathMigration.java index f0f59c4450..8796517c6e 100644 --- a/asdctool/src/main/java/org/openecomp/sdc/asdctool/migration/tasks/mig1806/ForwardPathMigration.java +++ b/asdctool/src/main/java/org/openecomp/sdc/asdctool/migration/tasks/mig1806/ForwardPathMigration.java @@ -122,7 +122,7 @@ public class ForwardPathMigration implements Migration { componentParametersView.setIgnoreComponentInstances(false); componentParametersView.setIgnoreCapabilities(false); componentParametersView.setIgnoreRequirements(false); - componentParametersView.setIgnoreForwardingPath(false); + componentParametersView.setIgnoreServicePath(false); Either<Component, StorageOperationStatus> toscaElement = toscaOperationFacade .getToscaElement(container.getUniqueId(), componentParametersView); if (toscaElement.isRight()) { |