AafPermissionService implementation
[dmaap/dbcapi.git] / src / main / java / org / onap / dmaap / dbcapi / aaf / AafUserRole.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.onap.dmaap
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.onap.dmaap.dbcapi.aaf;
22
23 import org.apache.log4j.Logger;
24
25 import java.util.Objects;
26
27
28 public class AafUserRole extends AafObject  {
29         static final Logger logger = Logger.getLogger(AafUserRole.class);
30
31         private String  identity;
32         private String  role;
33
34
35         
36         public AafUserRole(String identity,  String role ) {
37                 super();
38                 this.identity = identity;
39                 this.role = role;
40         }
41
42         public void setRole(String role) {
43                 this.role = role;
44         }
45         public String getRole() {
46                 return role;
47         }
48
49         public String getIdentity() {
50                 return identity;
51         }
52
53         public void setIdentity(String identity) {
54                 this.identity = identity;
55         }
56
57         public String toJSON() {
58
59                 String postJSON = String.format(" { \"user\": \"%s\", \"role\": \"%s\" }",  
60                                 this.getIdentity(), 
61                                 this.getRole()
62                                 );
63                 logger.info( "returning JSON: " + postJSON);
64                         
65                 return postJSON;
66         }
67
68
69         @Override
70         public boolean equals(Object o) {
71                 if (this == o) return true;
72                 if (o == null || getClass() != o.getClass()) return false;
73                 AafUserRole that = (AafUserRole) o;
74                 return Objects.equals(identity, that.identity) &&
75                                 Objects.equals(role, that.role);
76         }
77
78         @Override
79         public int hashCode() {
80
81                 return Objects.hash(identity, role);
82         }
83 }