diff options
Diffstat (limited to 'common-app-api/src')
-rw-r--r-- | common-app-api/src/main/java/org/openecomp/sdc/exception/ResponseFormat.java | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/common-app-api/src/main/java/org/openecomp/sdc/exception/ResponseFormat.java b/common-app-api/src/main/java/org/openecomp/sdc/exception/ResponseFormat.java index b0467425ec..2840ccd3b4 100644 --- a/common-app-api/src/main/java/org/openecomp/sdc/exception/ResponseFormat.java +++ b/common-app-api/src/main/java/org/openecomp/sdc/exception/ResponseFormat.java @@ -19,6 +19,8 @@ */ package org.openecomp.sdc.exception; +import lombok.Setter; + /** * Nested POJOs to express required JSON format of the error * <p> @@ -28,6 +30,7 @@ package org.openecomp.sdc.exception; */ public class ResponseFormat { + @Setter private int status; private RequestErrorWrapper requestErrorWrapper; @@ -40,10 +43,6 @@ public class ResponseFormat { this.status = status; } - public void setStatus(int status) { - this.status = status; - } - public Integer getStatus() { return status; } @@ -153,9 +152,6 @@ public class ResponseFormat { @SuppressWarnings("unused") private OkResponseInfo okResponseInfo; - public RequestError() { - } - public PolicyException getPolicyException() { return policyException; } |