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