c8d61df251ab12c1d5742929b163f5c07115b4d7
[sandbox-vid.git] /
1 package org.opencomp.simulator.presetGenerator.presets.ecompportal_att;
2
3 import org.opencomp.simulator.presetGenerator.presets.BasePresets.BaseEcompPortalPreset;
4 import org.springframework.http.HttpMethod;
5
6 public class PresetExtendSessionTimeOutsPost extends BaseEcompPortalPreset {
7     public Object getResponseBody() {
8         return "300000";
9     }
10
11     public HttpMethod getReqMethod() {
12         return HttpMethod.POST;
13     }
14
15     public String getReqPath() {
16         return getRootPath() + "//extendSessionTimeOuts";
17     }
18 }