Replaced all tabs with spaces in java and pom.xml
[so.git] / cloudify-client / src / main / java / org / onap / so / cloudify / v3 / model / Token.java
index ebb968a..c5809d4 100644 (file)
 package org.onap.so.cloudify.v3.model;
 
 import java.io.Serializable;
-
 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
 import com.fasterxml.jackson.annotation.JsonProperty;
 
 @JsonIgnoreProperties(ignoreUnknown = true)
-//@JsonRootName("token")
+// @JsonRootName("token")
 // The Token object is returned without a root element
 public class Token implements Serializable {
 
-       private static final long serialVersionUID = 1L;
+    private static final long serialVersionUID = 1L;
 
-       @JsonProperty("role")
+    @JsonProperty("role")
     private String role;
 
     @JsonProperty("value")
     private String value;
-    
-    //  Any expiration?  Maybe something in the Headers?
-    
-       public String getRole() {
-               return role;
-       }
 
-       public void setRole(String role) {
-               this.role = role;
-       }
+    // Any expiration? Maybe something in the Headers?
+
+    public String getRole() {
+        return role;
+    }
 
-       public String getValue() {
-               return value;
-       }
+    public void setRole(String role) {
+        this.role = role;
+    }
 
-       public void setValue(String value) {
-               this.value = value;
-       }
+    public String getValue() {
+        return value;
+    }
+
+    public void setValue(String value) {
+        this.value = value;
+    }
 
 
-       @Override
+    @Override
     public String toString() {
-        return "Token{" +
-                "role='" + role + '\'' +
-                ", value='" + value + '\'' +
-                '}';
+        return "Token{" + "role='" + role + '\'' + ", value='" + value + '\'' + '}';
     }
 }