Sync Integ to Master
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / tosca / model / VfModuleToscaMetadata.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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.sdc.be.tosca.model;
22
23 public class VfModuleToscaMetadata implements IToscaMetadata {
24
25     private String vfModuleModelName;
26     private String vfModuleModelInvariantUUID;
27     private String vfModuleModelUUID;
28     private String vfModuleModelVersion;
29     private String vfModuleModelCustomizationUUID;
30
31     @Override
32     public void setName(String name) {
33         vfModuleModelName = name;
34     }
35
36     @Override
37     public void setInvariantUUID(String invariantUUID) {
38         vfModuleModelInvariantUUID = invariantUUID;
39     }
40
41     @Override
42     public void setUUID(String uUID) {
43         vfModuleModelUUID = uUID;
44     }
45
46     @Override
47     public void setVersion(String version) {
48         vfModuleModelVersion = version;
49     }
50
51     public String getVfModuleModelName() {
52         return vfModuleModelName;
53     }
54
55     public String getVfModuleModelInvariantUUID() {
56         return vfModuleModelInvariantUUID;
57     }
58
59     public String getVfModuleModelUUID() {
60         return vfModuleModelUUID;
61     }
62
63     public String getVfModuleModelVersion() {
64         return vfModuleModelVersion;
65     }
66
67     public String getVfModuleModelCustomizationUUID() {
68         return vfModuleModelCustomizationUUID;
69     }
70
71     public void setCustomizationUUID(String customizationUUID) {
72         this.vfModuleModelCustomizationUUID = customizationUUID;
73     }
74
75 }