diff options
author | Michael Lando <ml636r@att.com> | 2018-02-08 15:34:34 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-02-08 15:34:34 +0000 |
commit | 0a340cbdee6eec3005541f3f10fa97dafe8d4d67 (patch) | |
tree | b4aec59840804712f88afac7ec1ea6c4dca5bed1 /src/main | |
parent | 0dcd1eef24541d074edcf3c8640b38cf7528ef6b (diff) | |
parent | 8a2ddc31c576e4a8a39e01bfe1e0fe7631e6cdf2 (diff) |
Merge "Support CR type Issue-ID: SDC-965 "
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/org/openecomp/sdc/tosca/parser/impl/SdcTypes.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/org/openecomp/sdc/tosca/parser/impl/SdcTypes.java b/src/main/java/org/openecomp/sdc/tosca/parser/impl/SdcTypes.java index 03d61a6..aeb4ee0 100644 --- a/src/main/java/org/openecomp/sdc/tosca/parser/impl/SdcTypes.java +++ b/src/main/java/org/openecomp/sdc/tosca/parser/impl/SdcTypes.java @@ -26,11 +26,11 @@ import java.util.stream.Collectors; public enum SdcTypes { - CP("CP"), VL("VL"), VF("VF"), VFC("VFC"), PNF("PNF"), SERVICE("Service"), CVFC("CVFC"), SERVICE_PROXY("Service Proxy"), CONFIGURATION("Configuration"); + CP("CP"), VL("VL"), VF("VF"), CR("CR"), VFC("VFC"), PNF("PNF"), SERVICE("Service"), CVFC("CVFC"), SERVICE_PROXY("Service Proxy"), CONFIGURATION("Configuration"); private String value; - private static List<String> complexTypes = Arrays.asList(VF, PNF, SERVICE, CVFC).stream().map(SdcTypes::getValue).collect(Collectors.toList()); + private static List<String> complexTypes = Arrays.asList(VF, PNF, CR, SERVICE, CVFC).stream().map(SdcTypes::getValue).collect(Collectors.toList()); private SdcTypes(String value) { this.value = value; |