aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/sdc/SdcPresetWithModelVersionId.java
diff options
context:
space:
mode:
authorkurczews <krzysztof.kurczewski@nokia.com>2018-08-13 12:42:35 +0200
committerkurczews <krzysztof.kurczewski@nokia.com>2018-08-13 12:46:44 +0200
commit5015d4aa2a7ba17d5e7024bf9ef344e7b320b9ab (patch)
tree785a347ef14348ee75746dc8e465b629819719dd /vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/sdc/SdcPresetWithModelVersionId.java
parent5ac1100c02912f7a45d2949d94cd33d054283139 (diff)
Renaming vid-automation #2
Change-Id: Ide2d71658369e0f0d953e1aa1752f48e9a4bbe96 Issue-ID: VID-205 Signed-off-by: kurczews <krzysztof.kurczewski@nokia.com>
Diffstat (limited to 'vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/sdc/SdcPresetWithModelVersionId.java')
-rw-r--r--vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/sdc/SdcPresetWithModelVersionId.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/sdc/SdcPresetWithModelVersionId.java b/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/sdc/SdcPresetWithModelVersionId.java
new file mode 100644
index 000000000..c3319d6cb
--- /dev/null
+++ b/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/sdc/SdcPresetWithModelVersionId.java
@@ -0,0 +1,22 @@
+package org.onap.simulator.presetGenerator.presets.sdc;
+
+import org.onap.simulator.presetGenerator.presets.BasePresets.BaseSDCPreset;
+
+public abstract class SdcPresetWithModelVersionId extends BaseSDCPreset {
+
+ public SdcPresetWithModelVersionId(String modelVersionId) {
+ this.modelVersionId = modelVersionId;
+ }
+
+ protected String modelVersionId;
+
+ public String getModelVersionId() {
+ return modelVersionId;
+ }
+
+ public String getReqPath() {
+ return getRootPath() + "/"+getModelVersionId();
+ }
+
+
+}