67186baa7e0ff95bc12f9535b40093b5a1e5325f
[ccsdk/features.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : ccsdk features
4  * ================================================================================
5  * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
6  * All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *     http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  *
21  */
22 package org.onap.ccsdk.features.sdnr.wt.oauthprovider.data;
23
24 public class KeycloakRole {
25     private String id;
26     private String name;
27     private String description;
28     private boolean composite;
29     private boolean clientRole;
30     private String containerId; // realmname
31
32     public String getName() {
33         return name;
34     }
35
36     public boolean isClientRole() {
37         return clientRole;
38     }
39
40     public void setClientRole(boolean clientRole) {
41         this.clientRole = clientRole;
42     }
43
44     public String getContainerId() {
45         return containerId;
46     }
47
48     public void setContainerId(String containerId) {
49         this.containerId = containerId;
50     }
51
52     public boolean isComposite() {
53         return composite;
54     }
55
56     public void setComposite(boolean composite) {
57         this.composite = composite;
58     }
59
60     public String getId() {
61         return id;
62     }
63
64     public void setId(String id) {
65         this.id = id;
66     }
67
68     public String getDescription() {
69         return description;
70     }
71
72     public void setDescription(String description) {
73         this.description = description;
74     }
75
76     public void setName(String name) {
77         this.name = name;
78     }
79
80 }