From db3e2ef238fa29e06cec3cb3f5b11fb407b161ce Mon Sep 17 00:00:00 2001 From: imamSidero Date: Wed, 21 Dec 2022 17:51:43 +0000 Subject: Provide tosca function to custom datatypes of list and map Providing the capability to add tosca function as the custom datatypes of list and map Issue-ID: SDC-4311 Signed-off-by: Imam hussain Change-Id: I7ec8943d8008440b091fc4eaa2aba49cdadcda8d --- .../java/org/openecomp/sdc/be/model/PropertyDefinition.java | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'catalog-model/src') diff --git a/catalog-model/src/main/java/org/openecomp/sdc/be/model/PropertyDefinition.java b/catalog-model/src/main/java/org/openecomp/sdc/be/model/PropertyDefinition.java index d9add3f425..f612514070 100644 --- a/catalog-model/src/main/java/org/openecomp/sdc/be/model/PropertyDefinition.java +++ b/catalog-model/src/main/java/org/openecomp/sdc/be/model/PropertyDefinition.java @@ -39,6 +39,16 @@ public class PropertyDefinition extends PropertyDataDefinition implements IOpera super(); } + public String getToscaSubPath() { + return toscaSubPath; + } + + public void setToscaSubPath(String toscaSubPath) { + this.toscaSubPath = toscaSubPath; + } + + private String toscaSubPath; + public PropertyDefinition(PropertyDataDefinition p) { super(p); getConstraints(); -- cgit