8f453c832dd6e737777df74b4ad0afc1386bafc1
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / serviceinstancebeans / InstanceReferences.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
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 import org.codehaus.jackson.map.annotate.JsonSerialize;
24
25 @JsonSerialize(include=JsonSerialize.Inclusion.NON_DEFAULT)
26 public class InstanceReferences {
27
28         protected String serviceInstanceId;
29         protected String serviceInstanceName;
30         protected String vnfInstanceId;
31         protected String vnfInstanceName;
32         protected String vfModuleInstanceId;
33         protected String vfModuleInstanceName;
34         protected String volumeGroupInstanceId;
35         protected String volumeGroupInstanceName;
36         protected String networkInstanceId;
37         protected String networkInstanceName;
38         protected String requestorId;
39
40
41         public String getServiceInstanceId() {
42                 return serviceInstanceId;
43         }
44         public void setServiceInstanceId(String serviceInstanceId) {
45                 this.serviceInstanceId = serviceInstanceId;
46         }
47         public String getServiceInstanceName() {
48                 return serviceInstanceName;
49         }
50         public void setServiceInstanceName(String serviceInstanceName) {
51                 this.serviceInstanceName = serviceInstanceName;
52         }
53         public String getVnfInstanceId() {
54                 return vnfInstanceId;
55         }
56         public void setVnfInstanceId(String vnfInstanceId) {
57                 this.vnfInstanceId = vnfInstanceId;
58         }
59         public String getVnfInstanceName() {
60                 return vnfInstanceName;
61         }
62         public void setVnfInstanceName(String vnfInstanceName) {
63                 this.vnfInstanceName = vnfInstanceName;
64         }
65         public String getVfModuleInstanceId() {
66                 return vfModuleInstanceId;
67         }
68         public void setVfModuleInstanceId(String vfModuleInstanceId) {
69                 this.vfModuleInstanceId = vfModuleInstanceId;
70         }
71         public String getVfModuleInstanceName() {
72                 return vfModuleInstanceName;
73         }
74         public void setVfModuleInstanceName(String vfModuleInstanceName) {
75                 this.vfModuleInstanceName = vfModuleInstanceName;
76         }
77         public String getVolumeGroupInstanceId() {
78                 return volumeGroupInstanceId;
79         }
80         public void setVolumeGroupInstanceId(String volumeGroupInstanceId) {
81                 this.volumeGroupInstanceId = volumeGroupInstanceId;
82         }
83         public String getVolumeGroupInstanceName() {
84                 return volumeGroupInstanceName;
85         }
86         public void setVolumeGroupInstanceName(String volumeGroupInstanceName) {
87                 this.volumeGroupInstanceName = volumeGroupInstanceName;
88         }
89         public String getNetworkInstanceId() {
90                 return networkInstanceId;
91         }
92         public void setNetworkInstanceId(String networkInstanceId) {
93                 this.networkInstanceId = networkInstanceId;
94         }
95         public String getNetworkInstanceName() {
96                 return networkInstanceName;
97         }
98         public void setNetworkInstanceName(String networkInstanceName) {
99                 this.networkInstanceName = networkInstanceName;
100         }
101
102         public String getRequestorId() {
103                 return requestorId;
104         }
105
106         public void setRequestorId(String requestorId) {
107                 this.requestorId = requestorId;
108         }
109 }