diff options
author | KrupaNagabhushan <krupa.nagabhushan@est.tech> | 2022-03-10 19:42:39 +0000 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2022-03-25 18:30:01 +0000 |
commit | 0902d2829ce984730085c816b649bed957ac0d99 (patch) | |
tree | 05d9c13152827017bbbe0090df21846c71c70934 /common-app-api/src | |
parent | a4ca0a2932ff6356ae521e57759b9f49051172bd (diff) |
Create vfModules for ASD
Issue-ID: SDC-3906
Signed-off-by: KrupaNagabhushan <krupa.nagabhushan@est.tech>
Change-Id: I37560a6d672d3ec07af23b3405bbcb7ab195c9dc
Diffstat (limited to 'common-app-api/src')
-rw-r--r-- | common-app-api/src/main/java/org/openecomp/sdc/common/api/Constants.java | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/common-app-api/src/main/java/org/openecomp/sdc/common/api/Constants.java b/common-app-api/src/main/java/org/openecomp/sdc/common/api/Constants.java index d518206ed1..80cc076b56 100644 --- a/common-app-api/src/main/java/org/openecomp/sdc/common/api/Constants.java +++ b/common-app-api/src/main/java/org/openecomp/sdc/common/api/Constants.java @@ -146,8 +146,15 @@ public final class Constants { //Plugin BL public static final String PLUGIN_BL_COMPONENT = "pluginStatusBL"; public static final String DEFAULT_MODEL_NAME = "SDC AID"; - - + //ASD properties + public static final String VF_MODULE_LABEL = "vf_module_label"; + public static final String VF_MODULE_DESCRIPTION = "vf_module_description"; + public static final String MIN_VF_MODULE_INSTANCES = "min_vf_module_instances"; + public static final String MAX_VF_MODULE_INSTANCES = "max_vf_module_instances"; + public static final String INITIAL_COUNT = "initial_count"; + public static final String VF_MODULE_TYPE = "vf_module_type"; + public static final String VOLUME_GROUP = "volume_group"; + public static final String ASD_DEPLOYMENT_ITEM= "tosca.artifacts.asd.deploymentItem"; private Constants() { } |