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

public class PresetAAIGetPortMirroringSourcePortsError extends PresetAAIGetPortMirroringSourcePorts {

    public PresetAAIGetPortMirroringSourcePortsError(String configurationId, String interfaceId, String interfaceName, boolean isPortMirrored) {
        super(configurationId, interfaceId, interfaceName, isPortMirrored);
    }

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

    @Override
    public Object getResponseBody() {
        return "You are not allowed to do things";
    }
}