Initial OpenECOMP MSO commit
[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         
39         
40         public String getServiceInstanceId() {
41                 return serviceInstanceId;
42         }
43         public void setServiceInstanceId(String serviceInstanceId) {
44                 this.serviceInstanceId = serviceInstanceId;
45         }
46         public String getServiceInstanceName() {
47                 return serviceInstanceName;
48         }
49         public void setServiceInstanceName(String serviceInstanceName) {
50                 this.serviceInstanceName = serviceInstanceName;
51         }
52         public String getVnfInstanceId() {
53                 return vnfInstanceId;
54         }
55         public void setVnfInstanceId(String vnfInstanceId) {
56                 this.vnfInstanceId = vnfInstanceId;
57         }
58         public String getVnfInstanceName() {
59                 return vnfInstanceName;
60         }
61         public void setVnfInstanceName(String vnfInstanceName) {
62                 this.vnfInstanceName = vnfInstanceName;
63         }
64         public String getVfModuleInstanceId() {
65                 return vfModuleInstanceId;
66         }
67         public void setVfModuleInstanceId(String vfModuleInstanceId) {
68                 this.vfModuleInstanceId = vfModuleInstanceId;
69         }
70         public String getVfModuleInstanceName() {
71                 return vfModuleInstanceName;
72         }
73         public void setVfModuleInstanceName(String vfModuleInstanceName) {
74                 this.vfModuleInstanceName = vfModuleInstanceName;
75         }
76         public String getVolumeGroupInstanceId() {
77                 return volumeGroupInstanceId;
78         }
79         public void setVolumeGroupInstanceId(String volumeGroupInstanceId) {
80                 this.volumeGroupInstanceId = volumeGroupInstanceId;
81         }
82         public String getVolumeGroupInstanceName() {
83                 return volumeGroupInstanceName;
84         }
85         public void setVolumeGroupInstanceName(String volumeGroupInstanceName) {
86                 this.volumeGroupInstanceName = volumeGroupInstanceName;
87         }
88         public String getNetworkInstanceId() {
89                 return networkInstanceId;
90         }
91         public void setNetworkInstanceId(String networkInstanceId) {
92                 this.networkInstanceId = networkInstanceId;
93         }
94         public String getNetworkInstanceName() {
95                 return networkInstanceName;
96         }
97         public void setNetworkInstanceName(String networkInstanceName) {
98                 this.networkInstanceName = networkInstanceName;
99         }
100         
101
102
103 }