getAppRolesForUser() method up in UserRolesController
[portal.git] / portal-BE / src / main / java / org / onap / portal / domain / dto / transport / Role.java
1 /*
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ===================================================================
9  *
10  * Unless otherwise specified, all software contained herein is licensed
11  * under the Apache License, Version 2.0 (the "License");
12  * you may not use this software except in compliance with the License.
13  * You may obtain a copy of the License at
14  *
15  *             http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  *
23  * Unless otherwise specified, all documentation contained herein is licensed
24  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
25  * you may not use this documentation except in compliance with the License.
26  * You may obtain a copy of the License at
27  *
28  *             https://creativecommons.org/licenses/by/4.0/
29  *
30  * Unless required by applicable law or agreed to in writing, documentation
31  * distributed under the License is distributed on an "AS IS" BASIS,
32  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33  * See the License for the specific language governing permissions and
34  * limitations under the License.
35  *
36  * ============LICENSE_END============================================
37  *
38  *
39  */
40
41 package org.onap.portal.domain.dto.transport;
42
43 import com.fasterxml.jackson.annotation.JsonIgnore;
44 import java.util.Iterator;
45 import java.util.Set;
46 import lombok.AllArgsConstructor;
47 import lombok.Builder;
48 import lombok.Getter;
49 import lombok.NoArgsConstructor;
50 import lombok.Setter;
51 import org.onap.portal.domain.db.fn.FnRoleComposite;
52 import org.onap.portal.domain.db.fn.FnRoleFunction;
53 import org.onap.portal.domain.dto.DomainVo;
54 import org.onap.portalsdk.core.domain.RoleFunction;
55
56 @Getter
57 @Setter
58 @Builder
59 @AllArgsConstructor
60 @NoArgsConstructor
61 public class Role extends DomainVo {
62
63   private static final long serialVersionUID = 1L;
64
65   private String name;
66   private boolean active;
67   private Integer priority;
68   private Set<FnRoleFunction> roleFunctions;
69   private Set<FnRoleComposite> childRoles;
70   @JsonIgnore
71   private Set<FnRoleComposite> parentRoles;
72
73   public String getEditUrl() {
74     return "/role.htm?role_id=" + this.getId();
75   }
76
77   public String getToggleActiveImage() {
78     return "/static/fusion/images/" + (this.isActive() ? "active.png" : "inactive.png");
79   }
80
81   public String getToggleActiveAltText() {
82     return this.isActive() ? "Click to Deactivate Role" : "Click to Activate Role";
83   }
84
85   public void removeChildRole(Long roleId) {
86     Iterator i = this.childRoles.iterator();
87
88     while (i.hasNext()) {
89       org.onap.portalsdk.core.domain.Role childRole = (org.onap.portalsdk.core.domain.Role) i.next();
90       if (childRole.getId().equals(roleId)) {
91         this.childRoles.remove(childRole);
92         break;
93       }
94     }
95
96   }
97
98   public void removeParentRole(Long roleId) {
99
100     for (Object role : this.parentRoles) {
101       org.onap.portalsdk.core.domain.Role parentRole = (org.onap.portalsdk.core.domain.Role) role;
102       if (parentRole.getId().equals(roleId)) {
103         this.parentRoles.remove(parentRole);
104         break;
105       }
106     }
107
108   }
109
110   public void removeRoleFunction(String roleFunctionCd) {
111
112     for (Object function : this.roleFunctions) {
113       RoleFunction roleFunction = (RoleFunction) function;
114       if (roleFunction.getCode().equals(roleFunctionCd)) {
115         this.roleFunctions.remove(roleFunction);
116         break;
117       }
118     }
119
120   }
121
122   public int compareTo(Object obj) {
123     String c1 = this.getName();
124     String c2 = ((org.onap.portalsdk.core.domain.Role) obj).getName();
125     return c1 != null && c2 != null ? c1.compareTo(c2) : 1;
126   }
127 }