Merge "Support for SO to ExtAPI"
[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     private String instanceGroupId;
40
41     @Override
42     public String toString() {
43         return new ToStringBuilder(this).append("serviceInstanceId", serviceInstanceId).append("vnfId", vnfId)
44                 .append("networkId", networkId).append("volumeGroupId", volumeGroupId).append("vfModuleId", vfModuleId)
45                 .append("networkCollectionId", networkCollectionId).append("configurationId", configurationId)
46                 .toString();
47     }
48
49     public String getServiceInstanceId() {
50         return serviceInstanceId;
51     }
52
53     public void setServiceInstanceId(String serviceInstanceId) {
54         this.serviceInstanceId = serviceInstanceId;
55     }
56
57     public String getVnfId() {
58         return vnfId;
59     }
60
61     public void setVnfId(String vnfId) {
62         this.vnfId = vnfId;
63     }
64
65     public String getNetworkId() {
66         return networkId;
67     }
68
69     public void setNetworkId(String networkId) {
70         this.networkId = networkId;
71     }
72
73     public String getVolumeGroupId() {
74         return volumeGroupId;
75     }
76
77     public void setVolumeGroupId(String volumeGroupId) {
78         this.volumeGroupId = volumeGroupId;
79     }
80
81     public String getVfModuleId() {
82         return vfModuleId;
83     }
84
85     public void setVfModuleId(String vfModuleId) {
86         this.vfModuleId = vfModuleId;
87     }
88
89     public String getNetworkCollectionId() {
90         return networkCollectionId;
91     }
92
93     public void setNetworkCollectionId(String networkCollectionId) {
94         this.networkCollectionId = networkCollectionId;
95     }
96
97     public String getConfigurationId() {
98         return configurationId;
99     }
100
101     public void setConfigurationId(String configurationId) {
102         this.configurationId = configurationId;
103     }
104
105     public String getInstanceGroupId() {
106         return instanceGroupId;
107     }
108
109     public void setInstanceGroupId(String instanceGroupId) {
110         this.instanceGroupId = instanceGroupId;
111     }
112 }