aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/ecompportal_att/EcompPortalPresetsUtils.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/ecompportal_att/EcompPortalPresetsUtils.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/ecompportal_att/EcompPortalPresetsUtils.java')
-rw-r--r--vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/ecompportal_att/EcompPortalPresetsUtils.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/ecompportal_att/EcompPortalPresetsUtils.java b/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/ecompportal_att/EcompPortalPresetsUtils.java
new file mode 100644
index 000000000..6470677d9
--- /dev/null
+++ b/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/ecompportal_att/EcompPortalPresetsUtils.java
@@ -0,0 +1,18 @@
+package org.onap.simulator.presetGenerator.presets.ecompportal_att;
+
+import org.onap.simulator.presetGenerator.presets.BasePresets.BasePreset;
+
+import java.util.Arrays;
+import java.util.List;
+
+public class EcompPortalPresetsUtils {
+
+ private final static List<BasePreset> ecompPortalPresets = Arrays.asList(
+ new PresetGetUserGet(),
+ new PresetGetSessionSlotCheckIntervalGet(),
+ new PresetExtendSessionTimeOutsPost());
+
+ public static List<BasePreset> getEcompPortalPresets() {
+ return ecompPortalPresets;
+ }
+}