02ff1c15980b0ee10aa497f3864fb1a425b8d8e4
[vid.git] /
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 }