Fix getManualTasks double-addition of baseUrl
[vid.git] / vid-automation / src / main / java / org / onap / simulator / presetGenerator / presets / aai / PresetAAIGetPortMirroringSourcePortsError.java
1 package org.onap.simulator.presetGenerator.presets.aai;
2
3 public class PresetAAIGetPortMirroringSourcePortsError extends PresetAAIGetPortMirroringSourcePorts {
4
5     public PresetAAIGetPortMirroringSourcePortsError(String configurationId, String interfaceId, String interfaceName, boolean isPortMirrored) {
6         super(configurationId, interfaceId, interfaceName, isPortMirrored);
7     }
8
9     @Override
10     public int getResponseCode() {
11         return 503;
12     }
13
14     @Override
15     public Object getResponseBody() {
16         return "You are not allowed to do things";
17     }
18 }