aboutsummaryrefslogtreecommitdiffstats
path: root/src/main
diff options
context:
space:
mode:
authorBerezin, Chaya <cb478c@intl.att.com>2018-01-25 17:36:54 +0200
committerMichael Lando <ml636r@att.com>2018-02-08 14:41:03 +0000
commit8a2ddc31c576e4a8a39e01bfe1e0fe7631e6cdf2 (patch)
tree0952da288e13d310d6b36cf70d7d5609ae51eaef /src/main
parent8f26703ebe460602d150faaba7759031c6088a5a (diff)
Support CR type
Issue-ID: SDC-965 Change-Id: Id87923f86ed402f7669a29f612aa3b1a9eb60832 Signed-off-by: Berezin, Chaya <cb478c@intl.att.com>
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/org/openecomp/sdc/tosca/parser/impl/SdcTypes.java4
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;