Added vnfc support to BB layer
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / servicedecomposition / entities / ConfigurationResourceKeys.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
25 public class ConfigurationResourceKeys implements Serializable{
26
27         /**
28          * 
29          */
30         private static final long serialVersionUID = 1L;
31         private String vfModuleCustomizationUUID;
32         private String vnfResourceCustomizationUUID;
33         private String cvnfcCustomizationUUID;
34         private String vnfcName;
35         
36         public String getVfModuleCustomizationUUID() {
37                 return vfModuleCustomizationUUID;
38         }
39         public void setVfModuleCustomizationUUID(String vfModuleCustomizationUUID) {
40                 this.vfModuleCustomizationUUID = vfModuleCustomizationUUID;
41         }
42         public String getVnfResourceCustomizationUUID() {
43                 return vnfResourceCustomizationUUID;
44         }
45         public void setVnfResourceCustomizationUUID(String vnfResourceCustomizationUUID) {
46                 this.vnfResourceCustomizationUUID = vnfResourceCustomizationUUID;
47         }
48         public String getCvnfcCustomizationUUID() {
49                 return cvnfcCustomizationUUID;
50         }
51         public void setCvnfcCustomizationUUID(String cvnfcCustomizationUUID) {
52                 this.cvnfcCustomizationUUID = cvnfcCustomizationUUID;
53         }
54         public String getVnfcName() {
55                 return vnfcName;
56         }
57         public void setVnfcName(String vnfcName) {
58                 this.vnfcName = vnfcName;
59         }
60         
61         
62 }