MsoUtil refactor
[vid.git] / vid-app-common / src / main / java / org / onap / vid / mso / MsoResponseWrapper.java
index 5a35e10..95b039b 100644 (file)
@@ -48,8 +48,12 @@ public class MsoResponseWrapper implements MsoResponseWrapperInterface {
         setStatus(response.getStatus());
     }
 
+       public MsoResponseWrapper(int status, String entity) {
+               this.status = status;
+               this.entity = entity;
+       }
 
-    /** The status. */
+       /** The status. */
        @JsonProperty("status")
        private int status;