blob: 21e8593132af2b4a00ab8197958f0d16d7a643b8 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
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
22
23package org.onap.osam.model;
24
25public class VfcInstanceGroup {
26
27 private String uuid;
28 private String invariantUuid;
29 private String name;
30 private String version;
31 private VfcInstanceGroupProperties vfcInstanceGroupProperties;
32
33 public String getUuid() {
34 return uuid;
35 }
36
37 public void setUuid(String uuid) {
38 this.uuid = uuid;
39 }
40
41 public String getInvariantUuid() {
42 return invariantUuid;
43 }
44
45 public void setInvariantUuid(String invariantUuid) {
46 this.invariantUuid = invariantUuid;
47 }
48
49 public String getName() {
50 return name;
51 }
52
53 public void setName(String name) {
54 this.name = name;
55 }
56
57 public String getVersion() {
58 return version;
59 }
60
61 public void setVersion(String version) {
62 this.version = version;
63 }
64
65 public VfcInstanceGroupProperties getVfcInstanceGroupProperties() {
66 return vfcInstanceGroupProperties;
67 }
68
69 public void setVfcInstanceGroupProperties(VfcInstanceGroupProperties vfcInstanceGroupProperties) {
70 this.vfcInstanceGroupProperties = vfcInstanceGroupProperties;
71 }
72
73
74
75
76
77}