c5338d4f2d56a1e7b36e4c87c3009d907480e9cf
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / serviceinstancebeans / ServiceInstancesRequest.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.openecomp.mso.apihandlerinfra.serviceinstancebeans;
22
23
24
25 public class ServiceInstancesRequest {
26
27         private RequestDetails requestDetails;
28         private String serviceInstanceId;
29         private String vnfInstanceId;
30         private String networkInstanceId;
31         private String volumeGroupInstanceId;
32         private String vfModuleInstanceId;
33
34         public RequestDetails getRequestDetails() {
35                 return requestDetails;
36         }
37
38         public void setRequestDetails(RequestDetails requestDetails) {
39                 this.requestDetails = requestDetails;
40         }
41
42         public String getServiceInstanceId() {
43                 return serviceInstanceId;
44         }
45
46         public void setServiceInstanceId(String serviceInstanceId) {
47                 this.serviceInstanceId = serviceInstanceId;
48         }
49
50         public String getVnfInstanceId() {
51                 return vnfInstanceId;
52         }
53
54         public void setVnfInstanceId(String vnfInstanceId) {
55                 this.vnfInstanceId = vnfInstanceId;
56         }
57
58         public String getNetworkInstanceId() {
59                 return networkInstanceId;
60         }
61
62         public void setNetworkInstanceId(String networkInstanceId) {
63                 this.networkInstanceId = networkInstanceId;
64         }
65
66         public String getVolumeGroupInstanceId() {
67                 return volumeGroupInstanceId;
68         }
69
70         public void setVolumeGroupInstanceId(String volumeGroupInstanceId) {
71                 this.volumeGroupInstanceId = volumeGroupInstanceId;
72         }
73
74         public String getVfModuleInstanceId() {
75                 return vfModuleInstanceId;
76         }
77
78         public void setVfModuleInstanceId(String vfModuleInstanceId) {
79                 this.vfModuleInstanceId = vfModuleInstanceId;
80         }
81
82         @Override
83         public String toString() {
84                 return "ServiceInstancesRequest [requestDetails=" + requestDetails
85                                 + ", serviceInstanceId=" + serviceInstanceId
86                                 + ", vnfInstanceId=" + vnfInstanceId + ", networkInstanceId="
87                                 + networkInstanceId + ", volumeGroupInstanceId="
88                                 + volumeGroupInstanceId + ", vfModuleInstanceId="
89                                 + vfModuleInstanceId + "]";
90         }
91
92 }