Containerization feature of SO
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / servicedecomposition / entities / WorkflowResourceIds.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 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.bpmn.servicedecomposition.entities;
22
23 import java.io.Serializable;
24 import org.apache.commons.lang3.builder.ToStringBuilder;
25
26 public class WorkflowResourceIds implements Serializable {
27
28         /**
29          * 
30          */
31         private static final long serialVersionUID = 8591599114353940105L;
32         private String serviceInstanceId;
33         private String vnfId;
34         private String networkId;
35         private String volumeGroupId;
36         private String vfModuleId;
37         private String networkCollectionId;
38         private String configurationId;
39
40         @Override
41         public String toString() {
42                 return new ToStringBuilder(this).append("serviceInstanceId", serviceInstanceId).append("vnfId", vnfId)
43                                 .append("networkId", networkId).append("volumeGroupId", volumeGroupId).append("vfModuleId", vfModuleId)
44                                 .append("networkCollectionId", networkCollectionId).append("configurationId", configurationId)
45                                 .toString();
46         }
47
48         public String getServiceInstanceId() {
49                 return serviceInstanceId;
50         }
51
52         public void setServiceInstanceId(String serviceInstanceId) {
53                 this.serviceInstanceId = serviceInstanceId;
54         }
55
56         public String getVnfId() {
57                 return vnfId;
58         }
59
60         public void setVnfId(String vnfId) {
61                 this.vnfId = vnfId;
62         }
63
64         public String getNetworkId() {
65                 return networkId;
66         }
67
68         public void setNetworkId(String networkId) {
69                 this.networkId = networkId;
70         }
71
72         public String getVolumeGroupId() {
73                 return volumeGroupId;
74         }
75
76         public void setVolumeGroupId(String volumeGroupId) {
77                 this.volumeGroupId = volumeGroupId;
78         }
79
80         public String getVfModuleId() {
81                 return vfModuleId;
82         }
83
84         public void setVfModuleId(String vfModuleId) {
85                 this.vfModuleId = vfModuleId;
86         }
87
88         public String getNetworkCollectionId() {
89                 return networkCollectionId;
90         }
91
92         public void setNetworkCollectionId(String networkCollectionId) {
93                 this.networkCollectionId = networkCollectionId;
94         }
95
96         public String getConfigurationId() {
97                 return configurationId;
98         }
99
100         public void setConfigurationId(String configurationId) {
101                 this.configurationId = configurationId;
102         }
103 }