Sync Integ to Master
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / tosca / datatypes / ToscaServiceGroupsMetadataDefinition.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.ci.tests.tosca.datatypes;
22
23 public class ToscaServiceGroupsMetadataDefinition {
24
25         public String vfModuleModelName;
26         public String vfModuleModelInvariantUUID;
27         public String vfModuleModelCustomizationUUID;
28         public String vfModuleModelUUID;
29         public String vfModuleModelVersion;
30         
31         public ToscaServiceGroupsMetadataDefinition() {
32                 super();
33         }
34
35         public String getVfModuleModelName() {
36                 return vfModuleModelName;
37         }
38
39         public void setVfModuleModelName(String vfModuleModelName) {
40                 this.vfModuleModelName = vfModuleModelName;
41         }
42
43         public String getVfModuleModelInvariantUUID() {
44                 return vfModuleModelInvariantUUID;
45         }
46
47         public void setVfModuleModelInvariantUUID(String vfModuleModelInvariantUUID) {
48                 this.vfModuleModelInvariantUUID = vfModuleModelInvariantUUID;
49         }
50
51         public String getVfModuleModelCustomizationUUID() {
52                 return vfModuleModelCustomizationUUID;
53         }
54
55         public void setVfModuleModelCustomizationUUID(String vfModuleModelCustomizationUUID) {
56                 this.vfModuleModelCustomizationUUID = vfModuleModelCustomizationUUID;
57         }
58
59         public String getVfModuleModelUUID() {
60                 return vfModuleModelUUID;
61         }
62
63         public void setVfModuleModelUUID(String vfModuleModelUUID) {
64                 this.vfModuleModelUUID = vfModuleModelUUID;
65         }
66
67         public String getVfModuleModelVersion() {
68                 return vfModuleModelVersion;
69         }
70
71         public void setVfModuleModelVersion(String vfModuleModelVersion) {
72                 this.vfModuleModelVersion = vfModuleModelVersion;
73         }
74
75         @Override
76         public String toString() {
77                 return "ToscaGroupsMetadataDefinition [vfModuleModelName=" + vfModuleModelName + ", vfModuleModelInvariantUUID=" + vfModuleModelInvariantUUID + ", vfModuleModelCustomizationUUID=" + vfModuleModelCustomizationUUID
78                                 + ", vfModuleModelUUID=" + vfModuleModelUUID + ", vfModuleModelVersion=" + vfModuleModelVersion + "]";
79         }
80         
81         
82         
83 }