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

public class PresetAAIGetSubscribersGetInvalidResponse extends PresetAAIGetSubscribersGet {
    private int httpCode;

    public PresetAAIGetSubscribersGetInvalidResponse(int httpCode) {
        this.httpCode = httpCode;
    }

    @Override
    public int getResponseCode() { return httpCode; }

    @Override
    public Object getResponseBody() {
        return "this payload is an invalid json";
    }
}