b046b77c8feb89336980cd20e0b33486e0504dc2
[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 import java.util.Collections;
7
8 public class PresetGetUserGet extends BaseEcompPortalPreset {
9     public Object getResponseBody() {
10         return Collections.EMPTY_LIST;
11     }
12
13     public HttpMethod getReqMethod() {
14         return HttpMethod.GET;
15     }
16
17     public String getReqPath() {
18         return getRootPath() + "/context/get_user";
19     }
20 }