summaryrefslogtreecommitdiffstats
path: root/vid-automation/src/test/java/org/opencomp/vid/model/mso/MsoResponseWrapperInterface.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-automation/src/test/java/org/opencomp/vid/model/mso/MsoResponseWrapperInterface.java')
-rw-r--r--vid-automation/src/test/java/org/opencomp/vid/model/mso/MsoResponseWrapperInterface.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/vid-automation/src/test/java/org/opencomp/vid/model/mso/MsoResponseWrapperInterface.java b/vid-automation/src/test/java/org/opencomp/vid/model/mso/MsoResponseWrapperInterface.java
deleted file mode 100644
index aafa4c33..00000000
--- a/vid-automation/src/test/java/org/opencomp/vid/model/mso/MsoResponseWrapperInterface.java
+++ /dev/null
@@ -1,15 +0,0 @@
-package org.opencomp.vid.model.mso;
-
-import com.fasterxml.jackson.annotation.JsonProperty;
-
-public interface MsoResponseWrapperInterface {
- @JsonProperty("entity")
- Object getEntity();
-
- @JsonProperty("status")
- int getStatus();
-
- @org.codehaus.jackson.annotate.JsonIgnore
- @com.fasterxml.jackson.annotation.JsonIgnore
- String getResponse();
-}