aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/openecomp/vid/mso/rest/Response.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/main/java/org/openecomp/vid/mso/rest/Response.java')
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/mso/rest/Response.java54
1 files changed, 0 insertions, 54 deletions
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/mso/rest/Response.java b/vid-app-common/src/main/java/org/openecomp/vid/mso/rest/Response.java
deleted file mode 100644
index ee3a8bfef..000000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/mso/rest/Response.java
+++ /dev/null
@@ -1,54 +0,0 @@
-package org.openecomp.vid.mso.rest;
-
-import com.fasterxml.jackson.annotation.JsonProperty;
-
-public class Response {
-
- /** The status. */
- private int status;
-
- /** The entity. */
- private RequestList entity;
-
- /**
- * Gets the status.
- *
- * @return The status
- */
- @JsonProperty("status")
- public int getStatus() {
- return status;
- }
-
- /**
- * Sets the status.
- *
- * @param status The status
- */
- @JsonProperty("status")
- public void setStatus(int status) {
- this.status = status;
- }
-
- /**
- * Gets the entity.
- *
- * @return The entity
- */
- @JsonProperty("entity")
- public RequestList getEntity() {
- return entity;
- }
-
- /**
- * Sets the entity.
- *
- * @param entity The entity
- */
- @JsonProperty("entity")
- public void setEntity(RequestList entity) {
- this.entity = entity;
- }
-
-
-}