summaryrefslogtreecommitdiffstats
path: root/vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/mso/PresetMSOOrchestrationRequestGetErrorResponse.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/mso/PresetMSOOrchestrationRequestGetErrorResponse.java')
-rw-r--r--vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/mso/PresetMSOOrchestrationRequestGetErrorResponse.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/mso/PresetMSOOrchestrationRequestGetErrorResponse.java b/vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/mso/PresetMSOOrchestrationRequestGetErrorResponse.java
deleted file mode 100644
index 910450aa..00000000
--- a/vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/mso/PresetMSOOrchestrationRequestGetErrorResponse.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package org.opencomp.simulator.presetGenerator.presets.mso;
-
-public class PresetMSOOrchestrationRequestGetErrorResponse extends PresetMSOOrchestrationRequestGet {
- private final int responseCode;
-
- public PresetMSOOrchestrationRequestGetErrorResponse(int responseCode) {
- this.responseCode = responseCode;
- }
-
- @Override
- public int getResponseCode() {
- return responseCode;
- }
-
- @Override
- public Object getResponseBody() {
- return "{" +
- " \"serviceException\": {" +
- " \"messageId\": \"SVC0002\"," +
- " \"text\": \"JSON Object Mapping Request\"" +
- " }" +
- "}";
- }
-}