Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / onap / so / adapters / vdu / CloudInfo.java
index f7db785..f03c9d3 100644 (file)
 package org.onap.so.adapters.vdu;
 
 /**
- * Cloud information structure for deploying/managing a VDU.  Includes the cloud site
- * as well as tenant information within the site.  Currently this is defined as a
- * cloud site ID. which would map to a CloudConfig entry.
- * Perhaps the CloudConfig entry itself should be provided, instead of requiring each
- * plug-in to query it.
+ * Cloud information structure for deploying/managing a VDU. Includes the cloud site as well as tenant information
+ * within the site. Currently this is defined as a cloud site ID. which would map to a CloudConfig entry. Perhaps the
+ * CloudConfig entry itself should be provided, instead of requiring each plug-in to query it.
  *
- * The meaning of 'tenant' may differ by cloud provider, but every cloud supports some
- * sort of tenant partitioning.
+ * The meaning of 'tenant' may differ by cloud provider, but every cloud supports some sort of tenant partitioning.
  *
  */
 public class CloudInfo {
 
-       private String cloudSiteId;
-       private String cloudOwner;
-       private String tenantId;
-       private String tenantName;//bpmn query and pass
+    private String cloudSiteId;
+    private String cloudOwner;
+    private String tenantId;
+    private String tenantName;// bpmn query and pass
 
-       public CloudInfo() {
-       }
+    public CloudInfo() {}
 
-       public CloudInfo (String cloudSiteId, String cloudOwner, String tenantId, String tenantName) {
-               this.cloudSiteId = cloudSiteId;
-               this.cloudOwner = cloudOwner;
-               this.tenantId = tenantId;
-               this.tenantName = tenantName;
-       }
+    public CloudInfo(String cloudSiteId, String cloudOwner, String tenantId, String tenantName) {
+        this.cloudSiteId = cloudSiteId;
+        this.cloudOwner = cloudOwner;
+        this.tenantId = tenantId;
+        this.tenantName = tenantName;
+    }
+
+    public String getCloudSiteId() {
+        return cloudSiteId;
+    }
+
+    public void setCloudSiteId(String cloudSiteId) {
+        this.cloudSiteId = cloudSiteId;
+    }
 
-       public String getCloudSiteId() {
-               return cloudSiteId;
-       }
-       public void setCloudSiteId(String cloudSiteId) {
-               this.cloudSiteId = cloudSiteId;
-       }
     public String getCloudOwner() {
         return cloudOwner;
     }
+
     public void setCloudOwner(String cloudOwner) {
         this.cloudOwner = cloudOwner;
     }
-       public String getTenantId() {
-               return tenantId;
-       }
-       public void setTenantId(String tenantId) {
-               this.tenantId = tenantId;
-       }
-       public String getTenantName() {
-               return tenantName;
-       }
-       public void setTenantName(String tenantName) {
-               this.tenantName = tenantName;
-       }
+
+    public String getTenantId() {
+        return tenantId;
+    }
+
+    public void setTenantId(String tenantId) {
+        this.tenantId = tenantId;
+    }
+
+    public String getTenantName() {
+        return tenantName;
+    }
+
+    public void setTenantName(String tenantName) {
+        this.tenantName = tenantName;
+    }
 
 
-}
\ No newline at end of file
+}