Merge "Updated to use vnfOperationalEnvironmentId"
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / onap / so / adapters / vnfrest / DeleteVolumeGroupRequest.java
index d17c5dd..aba53a4 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -32,6 +32,7 @@ import org.apache.commons.lang3.builder.ToStringBuilder;
 @XmlRootElement(name = "deleteVolumeGroupRequest")
 public class DeleteVolumeGroupRequest extends VfRequestCommon {
        private String cloudSiteId;
+       private String cloudOwner;
        private String tenantId;
        private String volumeGroupId;
        private String volumeGroupStackId;
@@ -49,6 +50,14 @@ public class DeleteVolumeGroupRequest extends VfRequestCommon {
                this.cloudSiteId = cloudSiteId;
        }
 
+    public String getCloudOwner() {
+        return cloudOwner;
+    }
+
+    public void setCloudOwner(String cloudOwner) {
+        this.cloudOwner = cloudOwner;
+    }
+
        public String getTenantId() {
                return tenantId;
        }
@@ -80,7 +89,7 @@ public class DeleteVolumeGroupRequest extends VfRequestCommon {
        public void setMsoRequest(MsoRequest msoRequest) {
                this.msoRequest = msoRequest;
        }
-       
+
        @Override
        public String toString() {
                return new ToStringBuilder(this).appendSuper(super.toString()).append("cloudSiteId", cloudSiteId)