Replaced all tabs with spaces in java and pom.xml
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / onap / so / apihandlerinfra / tenantisolationbeans / RequestReferences.java
index 337de3c..d766bcf 100644 (file)
@@ -21,7 +21,6 @@
 package org.onap.so.apihandlerinfra.tenantisolationbeans;
 
 import java.io.Serializable;
-
 import com.fasterxml.jackson.annotation.JsonInclude;
 import com.fasterxml.jackson.annotation.JsonInclude.Include;
 import com.fasterxml.jackson.annotation.JsonProperty;
@@ -30,67 +29,58 @@ import com.fasterxml.jackson.annotation.JsonRootName;
 @JsonRootName(value = "requestReferences")
 @JsonInclude(Include.NON_DEFAULT)
 public class RequestReferences implements Serializable {
-       
-       private static final long serialVersionUID = 5873356773819905368L;
-       
-       @JsonProperty("requestId")
-       protected String requestId;
-       
-       @JsonProperty("instanceId")
-       String instanceId;
+
+    private static final long serialVersionUID = 5873356773819905368L;
+
+    @JsonProperty("requestId")
+    protected String requestId;
+
+    @JsonProperty("instanceId")
+    String instanceId;
 
     /**
      * Gets the value of the requestId property.
      *
-     * @return
-     *     possible object is
-     *     {@link String }
+     * @return possible object is {@link String }
      *
-     */        
-       public String getRequestId() {
-               return requestId;
-       }
-       
+     */
+    public String getRequestId() {
+        return requestId;
+    }
+
     /**
      * Sets the value of the requestId property.
      *
-     * @param value
-     *     allowed object is
-     *     {@link String }
+     * @param value allowed object is {@link String }
      *
-     */        
-       public void setRequestId(String requestId) {
-               this.requestId = requestId;
-       }
-       
+     */
+    public void setRequestId(String requestId) {
+        this.requestId = requestId;
+    }
+
     /**
      * Gets the value of the instanceId property.
      *
-     * @return
-     *     possible object is
-     *     {@link String }
+     * @return possible object is {@link String }
      *
-     */                
-       public String getInstanceId() {
-               return instanceId;
-       }
-       
+     */
+    public String getInstanceId() {
+        return instanceId;
+    }
+
     /**
      * Sets the value of the instanceId property.
      *
-     * @param value
-     *     allowed object is
-     *     {@link String }
+     * @param value allowed object is {@link String }
      *
-     */                
-       public void setInstanceId(String instanceId) {
-               this.instanceId = instanceId;
-       }
+     */
+    public void setInstanceId(String instanceId) {
+        this.instanceId = instanceId;
+    }
+
+    @Override
+    public String toString() {
+        return "RequestReferences [requestId=" + requestId + ", instanceId=" + instanceId + "]";
+    }
 
-       @Override
-       public String toString() {
-               return "RequestReferences [requestId=" + requestId + 
-                                              ", instanceId=" + instanceId + "]";
-       }
-       
 }