2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
21 package org.onap.so.adapters.vnfrest;
24 import javax.xml.bind.annotation.XmlRootElement;
25 import org.onap.so.entity.MsoRequest;
26 import com.fasterxml.jackson.annotation.JsonRootName;
27 import org.apache.commons.lang3.builder.ToStringBuilder;
29 @JsonRootName("deleteVolumeGroupRequest")
30 @XmlRootElement(name = "deleteVolumeGroupRequest")
31 public class DeleteVolumeGroupRequest extends VfRequestCommon {
32 private String cloudSiteId;
33 private String cloudOwner;
34 private String tenantId;
35 private String volumeGroupId;
36 private String volumeGroupStackId;
37 private MsoRequest msoRequest = new MsoRequest();
39 public DeleteVolumeGroupRequest() {
43 public String getCloudSiteId() {
47 public void setCloudSiteId(String cloudSiteId) {
48 this.cloudSiteId = cloudSiteId;
51 public String getCloudOwner() {
55 public void setCloudOwner(String cloudOwner) {
56 this.cloudOwner = cloudOwner;
59 public String getTenantId() {
63 public void setTenantId(String tenantId) {
64 this.tenantId = tenantId;
67 public String getVolumeGroupId() {
71 public void setVolumeGroupId(String volumeGroupId) {
72 this.volumeGroupId = volumeGroupId;
75 public String getVolumeGroupStackId() {
76 return volumeGroupStackId;
79 public void setVolumeGroupStackId(String volumeGroupStackId) {
80 this.volumeGroupStackId = volumeGroupStackId;
83 public MsoRequest getMsoRequest() {
87 public void setMsoRequest(MsoRequest msoRequest) {
88 this.msoRequest = msoRequest;
92 public String toString() {
93 return new ToStringBuilder(this).appendSuper(super.toString()).append("cloudSiteId", cloudSiteId)
94 .append("tenantId", tenantId).append("volumeGroupId", volumeGroupId)
95 .append("volumeGroupStackId", volumeGroupStackId).append("msoRequest", msoRequest).toString();