e7c8171d6c22cc5113c01dc3c908978d097017a6
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / onap / so / adapters / vnfrest / UpdateVolumeGroupRequest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
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=========================================================
19  */
20
21 package org.onap.so.adapters.vnfrest;
22
23
24 import java.util.HashMap;
25 import java.util.Map;
26
27 import javax.xml.bind.annotation.XmlAccessType;
28 import javax.xml.bind.annotation.XmlAccessorType;
29 import javax.xml.bind.annotation.XmlRootElement;
30 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
31
32 import org.onap.so.entity.MsoRequest;
33 import org.onap.so.openstack.mappers.MapAdapter;
34
35 import com.fasterxml.jackson.annotation.JsonRootName;
36
37 @JsonRootName("updateVolumeGroupRequest")
38 @XmlRootElement(name = "updateVolumeGroupRequest")
39 @XmlAccessorType(XmlAccessType.FIELD)
40 public class UpdateVolumeGroupRequest extends VfRequestCommon {
41         private String cloudSiteId;
42         private String cloudOwner;
43         private String tenantId;
44         private String volumeGroupId;
45         private String volumeGroupStackId;
46         private String vnfType;
47         private String vnfVersion;
48         private String vfModuleType;
49         private String modelCustomizationUuid;
50         @XmlJavaTypeAdapter(MapAdapter.class)
51         private Map<String,Object> volumeGroupParams = new HashMap<>();
52         private MsoRequest msoRequest = new MsoRequest();
53
54         public UpdateVolumeGroupRequest() {
55                 super();
56         }
57
58         public String getCloudSiteId() {
59                 return cloudSiteId;
60         }
61
62         public void setCloudSiteId(String cloudSiteId) {
63                 this.cloudSiteId = cloudSiteId;
64         }
65
66     public String getCloudOwner() {
67         return cloudOwner;
68     }
69
70     public void setCloudOwner(String cloudOwner) {
71         this.cloudOwner = cloudOwner;
72     }
73
74         public String getTenantId() {
75                 return tenantId;
76         }
77
78         public void setTenantId(String tenantId) {
79                 this.tenantId = tenantId;
80         }
81
82         public String getVolumeGroupId() {
83                 return volumeGroupId;
84         }
85
86         public void setVolumeGroupId(String volumeGroupId) {
87                 this.volumeGroupId = volumeGroupId;
88         }
89
90         public String getVolumeGroupStackId() {
91                 return volumeGroupStackId;
92         }
93
94         public void setVolumeGroupStackId(String volumeGroupStackId) {
95                 this.volumeGroupStackId = volumeGroupStackId;
96         }
97
98         public String getVnfType() {
99                 return vnfType;
100         }
101
102         public void setVnfType(String vnfType) {
103                 this.vnfType = vnfType;
104         }
105
106         public String getVnfVersion() {
107                 return vnfVersion;
108         }
109
110         public void setVnfVersion(String vnfVersion) {
111                 this.vnfVersion = vnfVersion;
112         }
113
114         public String getVfModuleType() {
115                 return vfModuleType;
116         }
117
118         public void setVfModuleType(String vfModuleType) {
119                 this.vfModuleType = vfModuleType;
120         }
121
122         public String getModelCustomizationUuid() {
123                 return this.modelCustomizationUuid;
124         }
125
126         public void setModelCustomizationUuid(String modelCustomizationUuid) {
127                 this.modelCustomizationUuid = modelCustomizationUuid;
128         }
129
130         public Map<String, Object> getVolumeGroupParams() {
131                 return volumeGroupParams;
132         }
133
134         public void setVolumeGroupParams(Map<String, Object> volumeGroupParams) {
135                 this.volumeGroupParams = volumeGroupParams;
136         }
137
138         public MsoRequest getMsoRequest() {
139                 return msoRequest;
140         }
141
142         public void setMsoRequest(MsoRequest msoRequest) {
143                 this.msoRequest = msoRequest;
144         }
145 }