From 8a2ddc31c576e4a8a39e01bfe1e0fe7631e6cdf2 Mon Sep 17 00:00:00 2001 From: "Berezin, Chaya" Date: Thu, 25 Jan 2018 17:36:54 +0200 Subject: Support CR type Issue-ID: SDC-965 Change-Id: Id87923f86ed402f7669a29f612aa3b1a9eb60832 Signed-off-by: Berezin, Chaya --- src/main/java/org/openecomp/sdc/tosca/parser/impl/SdcTypes.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java') 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 complexTypes = Arrays.asList(VF, PNF, SERVICE, CVFC).stream().map(SdcTypes::getValue).collect(Collectors.toList()); + private static List complexTypes = Arrays.asList(VF, PNF, CR, SERVICE, CVFC).stream().map(SdcTypes::getValue).collect(Collectors.toList()); private SdcTypes(String value) { this.value = value; -- cgit