summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/openecomp/vid/mso/rest/RequestWrapper.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/main/java/org/openecomp/vid/mso/rest/RequestWrapper.java')
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/mso/rest/RequestWrapper.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/mso/rest/RequestWrapper.java b/vid-app-common/src/main/java/org/openecomp/vid/mso/rest/RequestWrapper.java
deleted file mode 100644
index b0e9fa12..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/mso/rest/RequestWrapper.java
+++ /dev/null
@@ -1,35 +0,0 @@
-package org.openecomp.vid.mso.rest;
-
-import com.fasterxml.jackson.annotation.JsonProperty;
-
-/**
- * request wrapper structure.
- */
-public class RequestWrapper {
-
-
- /** The request. */
- private Request request;
-
-
- /**
- * Gets the request.
- *
- * @return The requestDetails
- */
- @JsonProperty("request")
- public Request getRequest() {
- return request;
- }
-
- /**
- * Sets the request.
- *
- * @param request The request
- */
- @JsonProperty
- public void setRequest(Request request) {
- this.request = request;
- }
-
-}