vfmodule tenant and region are dictated by parent VNF values
[vid.git] / vid-app-common / src / main / java / org / onap / vid / model / VfcInstanceGroup.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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.vid.model;
22
23 public class VfcInstanceGroup {
24
25     private String uuid;
26     private String invariantUuid;
27     private String name;
28     private String version;
29     private VfcInstanceGroupProperties vfcInstanceGroupProperties;
30
31     public String getUuid() {
32         return uuid;
33     }
34
35     public void setUuid(String uuid) {
36         this.uuid = uuid;
37     }
38
39     public String getInvariantUuid() {
40         return invariantUuid;
41     }
42
43     public void setInvariantUuid(String invariantUuid) {
44         this.invariantUuid = invariantUuid;
45     }
46
47     public String getName() {
48         return name;
49     }
50
51     public void setName(String name) {
52         this.name = name;
53     }
54
55     public String getVersion() {
56         return version;
57     }
58
59     public void setVersion(String version) {
60         this.version = version;
61     }
62
63     public VfcInstanceGroupProperties getVfcInstanceGroupProperties() {
64         return vfcInstanceGroupProperties;
65     }
66
67     public void setVfcInstanceGroupProperties(VfcInstanceGroupProperties vfcInstanceGroupProperties) {
68         this.vfcInstanceGroupProperties = vfcInstanceGroupProperties;
69     }
70
71
72
73
74
75 }