Reformat catalog-dao
[sdc.git] / catalog-dao / src / main / java / org / openecomp / sdc / be / resources / data / auditing / model / CommonAuditData.java
index 6fb64ec..e676257 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
-
 package org.openecomp.sdc.be.resources.data.auditing.model;
 
 public class CommonAuditData {
+
     private String description;
     private String requestId;
     private String serviceInstanceId;
@@ -30,6 +30,10 @@ public class CommonAuditData {
         //for builder
     }
 
+    public static Builder newBuilder() {
+        return new Builder();
+    }
+
     public String getStatus() {
         return status;
     }
@@ -38,27 +42,24 @@ public class CommonAuditData {
         return description;
     }
 
-    public void setRequestId(String requestId) {
-        this.requestId = requestId;
-    }
-
     public String getRequestId() {
         return requestId;
     }
 
+    public void setRequestId(String requestId) {
+        this.requestId = requestId;
+    }
+
     public String getServiceInstanceId() {
         return serviceInstanceId;
     }
 
     public void setServiceInstanceId(String serviceInstanceId) {
-        this.serviceInstanceId = serviceInstanceId ;
-    }
-
-    public static Builder newBuilder() {
-        return new Builder();
+        this.serviceInstanceId = serviceInstanceId;
     }
 
     public static class Builder {
+
         private final CommonAuditData instance;
 
         private Builder() {
@@ -93,7 +94,5 @@ public class CommonAuditData {
         public CommonAuditData build() {
             return instance;
         }
-
     }
-
 }