Replaced all tabs with spaces in java and pom.xml
[so.git] / cloudify-client / src / main / java / org / onap / so / cloudify / v3 / model / Execution.java
index 73510ce..258d8e5 100644 (file)
@@ -23,7 +23,6 @@ package org.onap.so.cloudify.v3.model;
 import java.io.Serializable;
 import java.util.Date;
 import java.util.Map;
-
 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
 import com.fasterxml.jackson.annotation.JsonProperty;
 
@@ -31,8 +30,8 @@ import com.fasterxml.jackson.annotation.JsonProperty;
 // @JsonRootName("execution")
 public class Execution implements Serializable {
 
-       private static final long serialVersionUID = 1L;
-       
+    private static final long serialVersionUID = 1L;
+
     @JsonProperty("blueprint_id")
     private String blueprintId;
 
@@ -47,127 +46,119 @@ public class Execution implements Serializable {
 
     @JsonProperty("error")
     private String error;
-    
+
     @JsonProperty("id")
     private String id;
-    
+
     @JsonProperty("is_system_workflow")
     private boolean isSystemWorkflow;
-    
+
     @JsonProperty("parameters")
     private Map<String, Object> parameters;
-    
+
     @JsonProperty("status")
     private String status;
-    
+
     @JsonProperty("tenant_name")
     private String tenantName;
-    
+
     @JsonProperty("workflow_id")
     private String workflowId;
 
-       public String getBlueprintId() {
-               return blueprintId;
-       }
+    public String getBlueprintId() {
+        return blueprintId;
+    }
 
-       public void setBlueprintId(String blueprintId) {
-               this.blueprintId = blueprintId;
-       }
+    public void setBlueprintId(String blueprintId) {
+        this.blueprintId = blueprintId;
+    }
 
-       public Date getCreatedAt() {
-               return createdAt;
-       }
+    public Date getCreatedAt() {
+        return createdAt;
+    }
 
-       public void setCreatedAt(Date createdAt) {
-               this.createdAt = createdAt;
-       }
+    public void setCreatedAt(Date createdAt) {
+        this.createdAt = createdAt;
+    }
 
-       public String getCreatedBy() {
-               return createdBy;
-       }
+    public String getCreatedBy() {
+        return createdBy;
+    }
 
-       public void setCreatedBy(String createdBy) {
-               this.createdBy = createdBy;
-       }
+    public void setCreatedBy(String createdBy) {
+        this.createdBy = createdBy;
+    }
 
-       public String getDeploymentId() {
-               return deploymentId;
-       }
+    public String getDeploymentId() {
+        return deploymentId;
+    }
 
-       public void setDeploymentId(String deploymentId) {
-               this.deploymentId = deploymentId;
-       }
+    public void setDeploymentId(String deploymentId) {
+        this.deploymentId = deploymentId;
+    }
 
-       public String getError() {
-               return error;
-       }
+    public String getError() {
+        return error;
+    }
 
-       public void setError(String error) {
-               this.error = error;
-       }
+    public void setError(String error) {
+        this.error = error;
+    }
 
-       public String getId() {
-               return id;
-       }
+    public String getId() {
+        return id;
+    }
 
-       public void setId(String id) {
-               this.id = id;
-       }
+    public void setId(String id) {
+        this.id = id;
+    }
 
-       public boolean isSystemWorkflow() {
-               return isSystemWorkflow;
-       }
+    public boolean isSystemWorkflow() {
+        return isSystemWorkflow;
+    }
 
-       public void setSystemWorkflow(boolean isSystemWorkflow) {
-               this.isSystemWorkflow = isSystemWorkflow;
-       }
+    public void setSystemWorkflow(boolean isSystemWorkflow) {
+        this.isSystemWorkflow = isSystemWorkflow;
+    }
 
-       public Map<String, Object> getParameters() {
-               return parameters;
-       }
+    public Map<String, Object> getParameters() {
+        return parameters;
+    }
 
-       public void setParameters(Map<String, Object> parameters) {
-               this.parameters = parameters;
-       }
+    public void setParameters(Map<String, Object> parameters) {
+        this.parameters = parameters;
+    }
 
-       public String getStatus() {
-               return status;
-       }
+    public String getStatus() {
+        return status;
+    }
 
-       public void setStatus(String status) {
-               this.status = status;
-       }
+    public void setStatus(String status) {
+        this.status = status;
+    }
 
-       public String getTenantName() {
-               return tenantName;
-       }
+    public String getTenantName() {
+        return tenantName;
+    }
 
-       public void setTenantName(String tenantName) {
-               this.tenantName = tenantName;
-       }
+    public void setTenantName(String tenantName) {
+        this.tenantName = tenantName;
+    }
 
-       public String getWorkflowId() {
-               return workflowId;
-       }
+    public String getWorkflowId() {
+        return workflowId;
+    }
 
-       public void setWorkflowId(String workflowId) {
-               this.workflowId = workflowId;
-       }
+    public void setWorkflowId(String workflowId) {
+        this.workflowId = workflowId;
+    }
 
-       @Override
+    @Override
     public String toString() {
-        return "Execution{" +
-                "id='" + id + '\'' +
-                ", blueprintId='" + blueprintId + '\'' +
-                ", createdBy='" + createdBy + '\'' +
-                ", createdAt=" + createdAt +
-                ", deploymentId='" + deploymentId + '\'' +
-                ", error=" + error +
-                ", isSystemWorkflow=" + isSystemWorkflow +
-                ", status=" + status +
-                ", tenantName='" + tenantName + '\'' +
-                ", parameters=" + parameters +
-                '}';
+        return "Execution{" + "id='" + id + '\'' + ", blueprintId='" + blueprintId + '\'' + ", createdBy='" + createdBy
+                + '\'' + ", createdAt=" + createdAt + ", deploymentId='" + deploymentId + '\'' + ", error=" + error
+                + ", isSystemWorkflow=" + isSystemWorkflow + ", status=" + status + ", tenantName='" + tenantName + '\''
+                + ", parameters=" + parameters + '}';
     }