aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/ecompportal_att/PresetGetSessionSlotCheckIntervalGet.java
blob: c35dfcda5a03788915da00a66f1a3793e401d6d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.opencomp.simulator.presetGenerator.presets.ecompportal_att;

import org.opencomp.simulator.presetGenerator.presets.BasePresets.BaseEcompPortalPreset;
import org.springframework.http.HttpMethod;

public class PresetGetSessionSlotCheckIntervalGet extends BaseEcompPortalPreset {
    public Object getResponseBody() {
        return "300000";
    }

    public HttpMethod getReqMethod() {
        return HttpMethod.GET;
    }

    public String getReqPath() {
        return getRootPath() + "//getSessionSlotCheckInterval";
    }
}