457d01b14659673f449c59ee97820d2c164b187e
[so/adapters/so-cnf-adapter.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2021 Samsung Electronics Co. Ltd. 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.adapters.cnf.service.aai;
22
23 import java.util.List;
24
25 public class KubernetesResource {
26     private String id;
27     private String name;
28     private String group;
29     private String version;
30     private String kind;
31     private String namespace;
32     private List<String> labels;
33     private String k8sResourceSelfLink;
34
35     public String getId() {
36         return id;
37     }
38
39     public void setId(String id) {
40         this.id = id;
41     }
42
43     public String getName() {
44         return name;
45     }
46
47     public void setName(String name) {
48         this.name = name;
49     }
50
51     public String getGroup() {
52         return group;
53     }
54
55     public void setGroup(String group) {
56         this.group = group;
57     }
58
59     public String getVersion() {
60         return version;
61     }
62
63     public void setVersion(String version) {
64         this.version = version;
65     }
66
67     public String getKind() {
68         return kind;
69     }
70
71     public void setKind(String kind) {
72         this.kind = kind;
73     }
74
75     public String getNamespace() {
76         return namespace;
77     }
78
79     public void setNamespace(String namespace) {
80         this.namespace = namespace;
81     }
82
83     public List<String> getLabels() {
84         return labels;
85     }
86
87     public void setLabels(List<String> labels) {
88         this.labels = labels;
89     }
90
91     public String getK8sResourceSelfLink() {
92         return k8sResourceSelfLink;
93     }
94
95     public void setK8sResourceSelfLink(String k8sResourceSelfLink) {
96         this.k8sResourceSelfLink = k8sResourceSelfLink;
97     }
98 }