Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / onap / so / adapters / vnfrest / CreateVfModuleRequest.java
index 80e0a95..fb8fb2e 100644 (file)
@@ -22,209 +22,207 @@ package org.onap.so.adapters.vnfrest;
 
 import java.util.HashMap;
 import java.util.Map;
-
 import javax.xml.bind.annotation.XmlAccessType;
 import javax.xml.bind.annotation.XmlAccessorType;
 import javax.xml.bind.annotation.XmlAnyElement;
 import javax.xml.bind.annotation.XmlRootElement;
 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
-
 import org.onap.so.entity.MsoRequest;
 import org.onap.so.openstack.mappers.MapAdapter;
-
 import com.fasterxml.jackson.annotation.JsonRootName;
 
-/* README
- Map<String, String> elements when marshalled to XML produce a list of <entry><key>${MsoUtils.xmlEscape(key)}</key><value>${MsoUtils.xmlEscape(value)}</value></entry> elements.
- When marshalling to JSON they create a list of "${key}" : "${value}" pairs with no extra wrappers.
-*/
+/*
+ * README Map<String, String> elements when marshalled to XML produce a list of
+ * <entry><key>${MsoUtils.xmlEscape(key)}</key><value>${MsoUtils.xmlEscape(value)}</value></entry> elements. When
+ * marshalling to JSON they create a list of "${key}" : "${value}" pairs with no extra wrappers.
+ */
 @JsonRootName("createVfModuleRequest")
 @XmlRootElement(name = "createVfModuleRequest")
 @XmlAccessorType(XmlAccessType.FIELD)
 public class CreateVfModuleRequest extends VfRequestCommon {
-       private String cloudSiteId;
-       private String cloudOwner;
-       private String tenantId;
-
-       private String vnfId;
-       private String vnfType;
-       private String vnfVersion;
-
-       private String vfModuleId;
-       private String vfModuleName;
-       private String vfModuleType;
-
-       private String volumeGroupId;
-       private String volumeGroupStackId;
-       private String baseVfModuleId;
-       private String baseVfModuleStackId;
-       private String modelCustomizationUuid;
-
-       private String requestType;
-       private Boolean failIfExists = false;
-       private Boolean backout = true;
-       private Boolean enableBridge;
-       @XmlJavaTypeAdapter(MapAdapter.class)
-       private Map<String, Object> vfModuleParams = new HashMap<>();
-       private MsoRequest msoRequest = new MsoRequest();
-
-       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 getVnfId() {
-               return vnfId;
-       }
-
-       public void setVnfId(String vnfId) {
-               this.vnfId = vnfId;
-       }
-
-       public String getVfModuleName() {
-               return vfModuleName;
-       }
-
-       public void setVfModuleName(String vfModuleName) {
-               this.vfModuleName = vfModuleName;
-       }
-
-       public String getVnfType() {
-               return vnfType;
-       }
-
-       public void setVnfType(String vnfType) {
-               this.vnfType = vnfType;
-       }
-
-       public String getVnfVersion() {
-               return vnfVersion;
-       }
-
-       public void setVnfVersion(String vnfVersion) {
-               this.vnfVersion = vnfVersion;
-       }
-
-       public String getVfModuleId() {
-               return vfModuleId;
-       }
-
-       public void setVfModuleId(String vfModuleId) {
-               this.vfModuleId = vfModuleId;
-       }
-
-       public String getVfModuleType() {
-               return vfModuleType;
-       }
-
-       public void setVfModuleType(String vfModuleType) {
-               this.vfModuleType = vfModuleType;
-       }
-
-       public String getVolumeGroupId() {
-               return volumeGroupId;
-       }
-
-       public void setVolumeGroupId(String volumeGroupId) {
-               this.volumeGroupId = volumeGroupId;
-       }
-
-       public String getVolumeGroupStackId() {
-               return volumeGroupStackId;
-       }
-
-       public void setVolumeGroupStackId(String volumeGroupStackId) {
-               this.volumeGroupStackId = volumeGroupStackId;
-       }
-
-       public String getBaseVfModuleId() {
-               return baseVfModuleId;
-       }
-
-       public void setBaseVfModuleId(String baseVfModuleId) {
-               this.baseVfModuleId = baseVfModuleId;
-       }
-
-       public String getBaseVfModuleStackId() {
-               return baseVfModuleStackId;
-       }
+    private String cloudSiteId;
+    private String cloudOwner;
+    private String tenantId;
+
+    private String vnfId;
+    private String vnfType;
+    private String vnfVersion;
+
+    private String vfModuleId;
+    private String vfModuleName;
+    private String vfModuleType;
+
+    private String volumeGroupId;
+    private String volumeGroupStackId;
+    private String baseVfModuleId;
+    private String baseVfModuleStackId;
+    private String modelCustomizationUuid;
+
+    private String requestType;
+    private Boolean failIfExists = false;
+    private Boolean backout = true;
+    private Boolean enableBridge;
+    @XmlJavaTypeAdapter(MapAdapter.class)
+    private Map<String, Object> vfModuleParams = new HashMap<>();
+    private MsoRequest msoRequest = new MsoRequest();
+
+    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 getVnfId() {
+        return vnfId;
+    }
+
+    public void setVnfId(String vnfId) {
+        this.vnfId = vnfId;
+    }
+
+    public String getVfModuleName() {
+        return vfModuleName;
+    }
+
+    public void setVfModuleName(String vfModuleName) {
+        this.vfModuleName = vfModuleName;
+    }
+
+    public String getVnfType() {
+        return vnfType;
+    }
+
+    public void setVnfType(String vnfType) {
+        this.vnfType = vnfType;
+    }
+
+    public String getVnfVersion() {
+        return vnfVersion;
+    }
+
+    public void setVnfVersion(String vnfVersion) {
+        this.vnfVersion = vnfVersion;
+    }
+
+    public String getVfModuleId() {
+        return vfModuleId;
+    }
+
+    public void setVfModuleId(String vfModuleId) {
+        this.vfModuleId = vfModuleId;
+    }
+
+    public String getVfModuleType() {
+        return vfModuleType;
+    }
+
+    public void setVfModuleType(String vfModuleType) {
+        this.vfModuleType = vfModuleType;
+    }
+
+    public String getVolumeGroupId() {
+        return volumeGroupId;
+    }
+
+    public void setVolumeGroupId(String volumeGroupId) {
+        this.volumeGroupId = volumeGroupId;
+    }
+
+    public String getVolumeGroupStackId() {
+        return volumeGroupStackId;
+    }
+
+    public void setVolumeGroupStackId(String volumeGroupStackId) {
+        this.volumeGroupStackId = volumeGroupStackId;
+    }
+
+    public String getBaseVfModuleId() {
+        return baseVfModuleId;
+    }
+
+    public void setBaseVfModuleId(String baseVfModuleId) {
+        this.baseVfModuleId = baseVfModuleId;
+    }
+
+    public String getBaseVfModuleStackId() {
+        return baseVfModuleStackId;
+    }
 
-       public void setBaseVfModuleStackId(String baseVfModuleStackId) {
-               this.baseVfModuleStackId = baseVfModuleStackId;
-       }
+    public void setBaseVfModuleStackId(String baseVfModuleStackId) {
+        this.baseVfModuleStackId = baseVfModuleStackId;
+    }
 
-       public String getModelCustomizationUuid() {
-               return this.modelCustomizationUuid;
-       }
+    public String getModelCustomizationUuid() {
+        return this.modelCustomizationUuid;
+    }
 
-       public void setModelCustomizationUuid(String modelCustomizationUuid) {
-               this.modelCustomizationUuid = modelCustomizationUuid;
-       }
+    public void setModelCustomizationUuid(String modelCustomizationUuid) {
+        this.modelCustomizationUuid = modelCustomizationUuid;
+    }
 
-       public String getRequestType() {
-               return requestType;
-       }
+    public String getRequestType() {
+        return requestType;
+    }
 
-       public void setRequestType(String requestType) {
-               this.requestType = requestType;
-       }
+    public void setRequestType(String requestType) {
+        this.requestType = requestType;
+    }
 
-       public Boolean getFailIfExists() {
-               return failIfExists;
-       }
+    public Boolean getFailIfExists() {
+        return failIfExists;
+    }
 
-       public void setFailIfExists(Boolean failIfExists) {
-               this.failIfExists = failIfExists;
-       }
+    public void setFailIfExists(Boolean failIfExists) {
+        this.failIfExists = failIfExists;
+    }
 
-       public Boolean getBackout() {
-               return backout;
-       }
+    public Boolean getBackout() {
+        return backout;
+    }
 
-       public void setBackout(Boolean backout) {
-               this.backout = backout;
-       }
+    public void setBackout(Boolean backout) {
+        this.backout = backout;
+    }
 
-       public Map<String, Object> getVfModuleParams() {
-               return vfModuleParams;
-       }
+    public Map<String, Object> getVfModuleParams() {
+        return vfModuleParams;
+    }
 
-       public void setVfModuleParams(Map<String, Object> vfModuleParams) {
-               this.vfModuleParams = vfModuleParams;
-       }
+    public void setVfModuleParams(Map<String, Object> vfModuleParams) {
+        this.vfModuleParams = vfModuleParams;
+    }
 
-       public MsoRequest getMsoRequest() {
-               return msoRequest;
-       }
+    public MsoRequest getMsoRequest() {
+        return msoRequest;
+    }
 
-       public void setMsoRequest(MsoRequest msoRequest) {
-               this.msoRequest = msoRequest;
-       }
+    public void setMsoRequest(MsoRequest msoRequest) {
+        this.msoRequest = msoRequest;
+    }
 
-       public Boolean getEnableBridge() {
-               return this.enableBridge;
-       }
+    public Boolean getEnableBridge() {
+        return this.enableBridge;
+    }
 
-       public void setEnableBridge(Boolean enableBridge) {
-               this.enableBridge = enableBridge;
-       }
+    public void setEnableBridge(Boolean enableBridge) {
+        this.enableBridge = enableBridge;
+    }
 }