diff options
author | xuegao <xg353y@intl.att.com> | 2020-08-10 11:14:17 +0200 |
---|---|---|
committer | Christophe Closset <christophe.closset@intl.att.com> | 2020-08-11 06:51:32 +0000 |
commit | 38e9beac2e4e5f7abf6e1d9ee21517a19fb8e45e (patch) | |
tree | 9b073e95240372c3fce7edb2762b83232b125644 /catalog-be/src | |
parent | 3fa3f1d63374d59432921db4f3ea8be488e8b49e (diff) |
Fix workflow designer issue
Fix the issue so that the workflow bpmn will be packed into csar again.
Issue-ID: SDC-3181
Signed-off-by: xuegao <xg353y@intl.att.com>
Change-Id: I5f8ca112fe1bd2a7abf1529f491400237d88ce56
Diffstat (limited to 'catalog-be/src')
-rw-r--r-- | catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/InterfaceOperationBusinessLogic.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/InterfaceOperationBusinessLogic.java b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/InterfaceOperationBusinessLogic.java index 58bf0da15f..7bbe24d8e8 100644 --- a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/InterfaceOperationBusinessLogic.java +++ b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/InterfaceOperationBusinessLogic.java @@ -542,6 +542,7 @@ public class InterfaceOperationBusinessLogic extends BaseBusinessLogic { ArtifactDefinition artifactDefinition = new ArtifactDefinition(); artifactDefinition.setArtifactUUID(artifactUuId); artifactDefinition.setUniqueId(artifactUuId); + artifactDefinition.setEsId(artifactUuId); artifactDefinition.setArtifactType(ArtifactTypeEnum.WORKFLOW.getType()); artifactDefinition.setArtifactGroupType(ArtifactGroupTypeEnum.DEPLOYMENT); artifactDefinition.setArtifactLabel(operationName + ".workflowArtifact"); |