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 / TenantIsolationResponse.java
index 15a0ab8..b4ce83a 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,86 +29,74 @@ import com.fasterxml.jackson.annotation.JsonRootName;
 @JsonRootName(value = "tenantIsolationResponse")
 @JsonInclude(Include.NON_DEFAULT)
 public class TenantIsolationResponse implements Serializable {
-       
-       private static final long serialVersionUID = 756749312745898666L;
-       @JsonProperty("requestId")
-       protected String requestId;
-       @JsonProperty("status")
-       String status;
-       @JsonProperty("message")
-       String message; 
+
+    private static final long serialVersionUID = 756749312745898666L;
+    @JsonProperty("requestId")
+    protected String requestId;
+    @JsonProperty("status")
+    String status;
+    @JsonProperty("message")
+    String message;
 
     /**
      * 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 status property.
      *
-     * @return
-     *     possible object is
-     *     {@link String }
+     * @return possible object is {@link String }
      *
-     */                
-       public String getStatus() {
-               return status;
-       }
-       
+     */
+    public String getStatus() {
+        return status;
+    }
+
     /**
      * Sets the value of the status property.
      *
-     * @param value
-     *     allowed object is
-     *     {@link String }
+     * @param value allowed object is {@link String }
      *
-     */                
-       public void setStatus(String status) {
-               this.status = status;
-       }
-       
-          /**
+     */
+    public void setStatus(String status) {
+        this.status = status;
+    }
+
+    /**
      * Gets the value of the message property.
      *
-     * @return
-     *     possible object is
-     *     {@link String }
+     * @return possible object is {@link String }
      *
-     */                
-       public String getMessage() {
-               return message;
-       }       
-       
+     */
+    public String getMessage() {
+        return message;
+    }
+
     /**
      * Sets the value of the message property.
      *
-     * @param value
-     *     allowed object is
-     *     {@link String }
+     * @param value allowed object is {@link String }
      *
-     */                
-       public void setMessage(String message) {
-               this.message = message;
-       }       
+     */
+    public void setMessage(String message) {
+        this.message = message;
+    }
 
 
 }