Merge automation from ECOMP's repository
[vid.git] / vid-automation / src / main / java / org / onap / simulator / presetGenerator / presets / ecompportal_att / PresetGetSessionSlotCheckIntervalGet.java
1 package org.onap.simulator.presetGenerator.presets.ecompportal_att;
2
3 import org.onap.simulator.presetGenerator.presets.BasePresets.BaseEcompPortalPreset;
4 import org.springframework.http.HttpMethod;
5
6 public class PresetGetSessionSlotCheckIntervalGet extends BaseEcompPortalPreset {
7     public Object getResponseBody() {
8         return "300000";
9     }
10
11     public HttpMethod getReqMethod() {
12         return HttpMethod.GET;
13     }
14
15     public String getReqPath() {
16         return getRootPath() + "/v3/getSessionSlotCheckInterval";
17     }
18 }