aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/ecompportal_att/EcompPortalPresetsUtils.java
blob: 6470677d9c2692285d3c46ab85757ed32680bc9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
    }
}