Replaced all tabs with spaces in java and pom.xml
[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
40     public void setVfModuleCustomizationUUID(String vfModuleCustomizationUUID) {
41         this.vfModuleCustomizationUUID = vfModuleCustomizationUUID;
42     }
43
44     public String getVnfResourceCustomizationUUID() {
45         return vnfResourceCustomizationUUID;
46     }
47
48     public void setVnfResourceCustomizationUUID(String vnfResourceCustomizationUUID) {
49         this.vnfResourceCustomizationUUID = vnfResourceCustomizationUUID;
50     }
51
52     public String getCvnfcCustomizationUUID() {
53         return cvnfcCustomizationUUID;
54     }
55
56     public void setCvnfcCustomizationUUID(String cvnfcCustomizationUUID) {
57         this.cvnfcCustomizationUUID = cvnfcCustomizationUUID;
58     }
59
60     public String getVnfcName() {
61         return vnfcName;
62     }
63
64     public void setVnfcName(String vnfcName) {
65         this.vnfcName = vnfcName;
66     }
67
68
69 }