aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/ecompportal_att/PresetGetUserGet.java
blob: f2fb247c32f9196955b99491596c11528c0dcde8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.onap.simulator.presetGenerator.presets.ecompportal_att;

import org.onap.simulator.presetGenerator.presets.BasePresets.BaseEcompPortalPreset;
import org.springframework.http.HttpMethod;

import java.util.Collections;

public class PresetGetUserGet extends BaseEcompPortalPreset {
    public Object getResponseBody() {
        return Collections.EMPTY_LIST;
    }

    public HttpMethod getReqMethod() {
        return HttpMethod.GET;
    }

    public String getReqPath() {
        return getRootPath() + "/context/get_user";
    }
}