diff options
author | andre.schmid <andre.schmid@est.tech> | 2021-09-17 18:57:23 +0100 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2021-09-20 07:28:42 +0000 |
commit | 0ef5f83fbe6f68cbde5530b5d58d96cac285cfa7 (patch) | |
tree | 7dbe40191ff174b5cfad39fa205a80555f733984 /common-be/src | |
parent | d6b83fce723703f4dea0bce3675ecbf6996aaf9a (diff) |
Fix update VSP missing VSP version id
Fills the gaps of persisting and loading the VSP version id
Change-Id: I4d6c63bd2309777fdfb337cf98c1a0f9daaa434b
Issue-ID: SDC-3731
Signed-off-by: andre.schmid <andre.schmid@est.tech>
Diffstat (limited to 'common-be/src')
-rw-r--r-- | common-be/src/main/java/org/openecomp/sdc/be/datatypes/enums/GraphPropertyEnum.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common-be/src/main/java/org/openecomp/sdc/be/datatypes/enums/GraphPropertyEnum.java b/common-be/src/main/java/org/openecomp/sdc/be/datatypes/enums/GraphPropertyEnum.java index 1d65d1d70a..ab3a05e560 100644 --- a/common-be/src/main/java/org/openecomp/sdc/be/datatypes/enums/GraphPropertyEnum.java +++ b/common-be/src/main/java/org/openecomp/sdc/be/datatypes/enums/GraphPropertyEnum.java @@ -44,6 +44,7 @@ public enum GraphPropertyEnum { IS_ABSTRACT("abstract", Boolean.class, false, true), INVARIANT_UUID("invariantUuid", String.class, false, true), CSAR_UUID("csarUuid", String.class, false, true), + CSAR_VERSION_UUID("csarVersionUuid", String.class, false, true), //used for user (old format, no json for users) USERID("userId", String.class, true, true), ROLE("role", String.class, false, false), |