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 java.util.HashMap;
26 import javax.xml.bind.annotation.XmlAccessType;
27 import javax.xml.bind.annotation.XmlAccessorType;
28 import javax.xml.bind.annotation.XmlRootElement;
29 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
30 import org.onap.so.entity.MsoRequest;
31 import org.onap.so.openstack.mappers.MapAdapter;
32 import com.fasterxml.jackson.annotation.JsonRootName;
34 @JsonRootName("createVolumeGroupRequest")
35 @XmlRootElement(name = "createVolumeGroupRequest")
36 @XmlAccessorType(XmlAccessType.FIELD)
37 public class CreateVolumeGroupRequest extends VfRequestCommon {
38 private String cloudSiteId;
39 private String cloudOwner;
40 private String tenantId;
41 private String volumeGroupName;
42 private String volumeGroupId;
43 private String vnfType;
44 private String vnfVersion;
45 private String vfModuleType;
46 private String modelCustomizationUuid;
47 @XmlJavaTypeAdapter(MapAdapter.class)
48 private Map<String, Object> volumeGroupParams = new HashMap<>();
49 private Boolean failIfExists;
50 private Boolean enableBridge;
51 private Boolean suppressBackout;
52 private MsoRequest msoRequest = new MsoRequest();
54 public CreateVolumeGroupRequest() {
58 public String getCloudSiteId() {
62 public void setCloudSiteId(String cloudSiteId) {
63 this.cloudSiteId = cloudSiteId;
66 public String getCloudOwner() {
70 public void setCloudOwner(String cloudOwner) {
71 this.cloudOwner = cloudOwner;
74 public String getTenantId() {
78 public void setTenantId(String tenantId) {
79 this.tenantId = tenantId;
82 public String getVnfType() {
86 public void setVnfType(String vnfType) {
87 this.vnfType = vnfType;
90 public String getVnfVersion() {
94 public void setVnfVersion(String vnfVersion) {
95 this.vnfVersion = vnfVersion;
98 public String getVfModuleType() {
102 public void setVfModuleType(String vfModuleType) {
103 this.vfModuleType = vfModuleType;
106 public Map<String, Object> getVolumeGroupParams() {
107 return volumeGroupParams;
110 public void setVolumeGroupParams(Map<String, Object> volumeGroupParams) {
111 this.volumeGroupParams = volumeGroupParams;
114 public String getVolumeGroupName() {
115 return volumeGroupName;
118 public void setVolumeGroupName(String volumeGroupName) {
119 this.volumeGroupName = volumeGroupName;
122 public String getVolumeGroupId() {
123 return volumeGroupId;
126 public String getModelCustomizationUuid() {
127 return this.modelCustomizationUuid;
130 public void setModelCustomizationUuid(String modelCustomizationUuid) {
131 this.modelCustomizationUuid = modelCustomizationUuid;
134 public void setVolumeGroupId(String volumeGroupId) {
135 this.volumeGroupId = volumeGroupId;
138 public Boolean getFailIfExists() {
142 public void setFailIfExists(Boolean failIfExists) {
143 this.failIfExists = failIfExists;
146 public Boolean getSuppressBackout() {
147 return suppressBackout;
150 public void setSuppressBackout(Boolean suppressBackout) {
151 this.suppressBackout = suppressBackout;
154 public MsoRequest getMsoRequest() {
158 public void setMsoRequest(MsoRequest msoRequest) {
159 this.msoRequest = msoRequest;
162 public Boolean getEnableBridge() {
166 public void setEnableBridge(Boolean enableBridge) {
167 this.enableBridge = enableBridge;