1 package org.opencomp.simulator.presetGenerator.presets.ecompportal_att;
3 import org.opencomp.simulator.presetGenerator.presets.BasePresets.BaseEcompPortalPreset;
4 import org.springframework.http.HttpMethod;
6 import java.util.Collections;
8 public class PresetGetUserGet extends BaseEcompPortalPreset {
9 public Object getResponseBody() {
10 return Collections.EMPTY_LIST;
13 public HttpMethod getReqMethod() {
14 return HttpMethod.GET;
17 public String getReqPath() {
18 return getRootPath() + "/context/get_user";