Format Java code with respect to ONAP Code Style
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / model / consumer / DeleteE2EServiceInstanceResponse.java
index ab74338..b9266ef 100644 (file)
 package org.onap.nbi.apis.serviceorder.model.consumer;
 
 public class DeleteE2EServiceInstanceResponse {
-       
-       private String operationId;
 
-       public String getOperationId() {
-               return operationId;
-       }
+    private String operationId;
 
-       public void setOperationId(String operationId) {
-               this.operationId = operationId;
-       }
-       
-       @Override
+    public String getOperationId() {
+        return operationId;
+    }
+
+    public void setOperationId(String operationId) {
+        this.operationId = operationId;
+    }
+
+    @Override
     public String toString() {
-        return "DeleteE2EServiceInstanceResponse{" +
-            "operationId='" + operationId + '\'' +
-            '}';
+        return "DeleteE2EServiceInstanceResponse{" + "operationId='" + operationId + '\'' + '}';
     }
 
 }