Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / servicedecomposition / homingobjects / Candidate.java
index a727162..ed94c53 100644 (file)
@@ -22,67 +22,62 @@ package org.onap.so.bpmn.servicedecomposition.homingobjects;
 
 import java.io.Serializable;
 import java.util.List;
-
 import com.fasterxml.jackson.annotation.JsonProperty;
 
 
 public class Candidate implements Serializable {
 
 
-       private static final long serialVersionUID = -3959572501582849328L;
-
-       @JsonProperty("identifierType")
-       private CandidateType identifierType;
-       @JsonProperty("identifiers")
-       private List<String> identifiers;
-       @JsonProperty("cloudOwner")
-       private String cloudOwner;
-
-       /**
-        * list of candidates
-        * i.e. actual serviceInstanceId, actual vnfName, actual cloudRegionId, etc.
-        */
-       public List<String> getIdentifiers() {
-               return identifiers;
-       }
-
-       /**
-        * list of candidates
-        * i.e. actual serviceInstanceId, actual vnfName, actual cloudRegionId, etc.
-        */
-       public void setIdentifiers(List<String> identifiers) {
-               this.identifiers = identifiers;
-       }
-
-       /**
-        * Way to identify the type of candidate
-        * i.e. "serviceInstanceId", "vnfName", "cloudRegionId", etc.
-        */
-       public CandidateType getIdentifierType(){
-               return identifierType;
-       }
-
-       /**
-        * Way to identify the type of candidate
-        * i.e. "serviceInstanceId", "vnfName", "cloudRegionId", etc.
-        */
-       public void setIdentifierType(CandidateType identifierType){
-               this.identifierType = identifierType;
-       }
-
-       /**
-        * The name of the cloud owner. Required if candidateType is cloudRegionId
-        */
-       public String getCloudOwner(){
-               return cloudOwner;
-       }
-
-       /**
-        * The name of the cloud owner. Required if candidateType is cloudRegionId
-        */
-       public void setCloudOwner(String cloudOwner){
-               this.cloudOwner = cloudOwner;
-       }
+    private static final long serialVersionUID = -3959572501582849328L;
+
+    @JsonProperty("identifierType")
+    private CandidateType identifierType;
+    @JsonProperty("identifiers")
+    private List<String> identifiers;
+    @JsonProperty("cloudOwner")
+    private String cloudOwner;
+
+    /**
+     * list of candidates i.e. actual serviceInstanceId, actual vnfName, actual cloudRegionId, etc.
+     */
+    public List<String> getIdentifiers() {
+        return identifiers;
+    }
+
+    /**
+     * list of candidates i.e. actual serviceInstanceId, actual vnfName, actual cloudRegionId, etc.
+     */
+    public void setIdentifiers(List<String> identifiers) {
+        this.identifiers = identifiers;
+    }
+
+    /**
+     * Way to identify the type of candidate i.e. "serviceInstanceId", "vnfName", "cloudRegionId", etc.
+     */
+    public CandidateType getIdentifierType() {
+        return identifierType;
+    }
+
+    /**
+     * Way to identify the type of candidate i.e. "serviceInstanceId", "vnfName", "cloudRegionId", etc.
+     */
+    public void setIdentifierType(CandidateType identifierType) {
+        this.identifierType = identifierType;
+    }
+
+    /**
+     * The name of the cloud owner. Required if candidateType is cloudRegionId
+     */
+    public String getCloudOwner() {
+        return cloudOwner;
+    }
+
+    /**
+     * The name of the cloud owner. Required if candidateType is cloudRegionId
+     */
+    public void setCloudOwner(String cloudOwner) {
+        this.cloudOwner = cloudOwner;
+    }