WidgetsCatalogMarkupController up
[portal.git] / portal-BE / src / main / java / org / onap / portal / domain / db / fn / FnRole.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.db.fn;
42
43 import java.io.Serializable;
44 import java.util.Set;
45 import javax.persistence.CascadeType;
46 import javax.persistence.Column;
47 import javax.persistence.Entity;
48 import javax.persistence.FetchType;
49 import javax.persistence.GeneratedValue;
50 import javax.persistence.GenerationType;
51 import javax.persistence.Id;
52 import javax.persistence.Index;
53 import javax.persistence.JoinColumn;
54 import javax.persistence.JoinTable;
55 import javax.persistence.ManyToMany;
56 import javax.persistence.NamedQueries;
57 import javax.persistence.NamedQuery;
58 import javax.persistence.OneToMany;
59 import javax.persistence.Table;
60 import javax.validation.constraints.Digits;
61 import javax.validation.constraints.NotNull;
62 import javax.validation.constraints.Size;
63 import lombok.AllArgsConstructor;
64 import lombok.Getter;
65 import lombok.NoArgsConstructor;
66 import lombok.Setter;
67 import org.hibernate.validator.constraints.SafeHtml;
68 import org.onap.portal.domain.db.ep.EpAppRoleFunction;
69 import org.onap.portal.domain.db.ep.EpRoleNotification;
70 import org.onap.portal.domain.db.ep.EpUserRolesRequestDet;
71 import org.onap.portal.domain.db.ep.EpWidgetCatalogRole;
72 import org.onap.portal.domain.dto.DomainVo;
73
74 /*
75 CREATE TABLE `fn_role` (
76         `role_id` int(11) NOT NULL AUTO_INCREMENT,
77         `role_name` varchar(300) NOT NULL,
78         `active_yn` varchar(1) NOT NULL DEFAULT 'y',
79         `priority` decimal(4,0) DEFAULT NULL,
80         `app_id` int(11) DEFAULT NULL,
81         `app_role_id` int(11) DEFAULT NULL,
82         PRIMARY KEY (`role_id`),
83         UNIQUE KEY `fn_role_name_app_id_idx` (`role_name`,`app_id`) USING BTREE
84         )
85 */
86
87 @NamedQueries({
88         @NamedQuery(
89                 name = "FnRole.retrieveAppRolesByRoleNameAndByAppId",
90                 query = "FROM FnRole where role_name =:roleName and app_id =:appId"),
91         @NamedQuery(
92                 name = "FnRole.retrieveAppRolesByAppId",
93                 query = "FROM FnRole where app_id =:appId"),
94         @NamedQuery(
95                 name = "FnRole.retrieveAppRolesWhereAppIdIsNull",
96                 query = "FROM FnRole where app_id is null"),
97         @NamedQuery(
98                 name = "FnRole.retrieveAppRoleByRoleIdWhereAppIdIsNull",
99                 query = "FROM FnRole where role_id =:roleId and app_id is null"),
100         @NamedQuery(
101                 name = "FnRole.retrieveAppRoleByAppRoleIdAndByAppId",
102                 query = "FROM FnRole where app_role_id =:appRoleId and app_id =:appId"),
103         @NamedQuery(
104                 name = "FnRole.retrieveAppRoleByRoleIdAndAppId",
105                 query = "FROM FnRole where role_id =:roleId and app_id =:appId"),
106         @NamedQuery(
107                 name = "FnRole.retrieveAppRolesByRoleNameAndWhereAppIdIsNull",
108                 query = "FROM FnRole where role_name =:roleName and app_id is null"),
109         @NamedQuery(
110                 name = "FnRole.retrieveActiveRolesOfApplication",
111                 query = "from FnRole where active_yn = 'Y' and app_id=:appId"),
112         @NamedQuery(name = "FnRole.retrieveRoleToUpdateInExternalAuthSystem",
113                 query = "FROM FnRole where role_name =:roleName and app_id =:appId")
114 })
115
116 @Table(name = "fn_role", indexes = {
117         @Index(name = "fn_role_name_app_id_idx", columnList = "role_name, app_id", unique = true)
118 })
119 @NoArgsConstructor
120 @AllArgsConstructor
121 @Getter
122 @Setter
123 @Entity
124 public class FnRole extends DomainVo implements Serializable {
125
126        @Id
127        @GeneratedValue(strategy = GenerationType.AUTO)
128        @Column(name = "role_id", length = 11, nullable = false)
129        @Digits(integer = 11, fraction = 0)
130        private Long roleId;
131        @Column(name = "role_name", length = 300, nullable = false)
132        @Size(max = 300)
133        @NotNull
134        @SafeHtml
135        private String roleName;
136        @Column(name = "active_yn", length = 1, columnDefinition = "character varying(1) default 'y'", nullable = false)
137        @NotNull
138        private Boolean activeYn;
139        @Column(name = "priority", length = 4, columnDefinition = "decimal(4,0) DEFAULT NULL")
140        @Digits(integer = 4, fraction = 0)
141        private Long priority;
142        @Column(name = "app_Id", length = 11, columnDefinition = "int(11) default null")
143        @Digits(integer = 11, fraction = 0)
144        private Long appId;
145        @Column(name = "app_role_id", length = 11, columnDefinition = "int(11) default null")
146        @Digits(integer = 11, fraction = 0)
147        private Long appRoleId;
148        @OneToMany(
149                targetEntity = FnRoleFunction.class,
150                mappedBy = "roleId",
151                cascade = CascadeType.ALL,
152                fetch = FetchType.LAZY
153        )
154        private Set<FnRoleFunction> fnRoleFunctions;
155        @ManyToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
156        @JoinTable(
157                name = "fn_user_pseudo_role",
158                joinColumns = {@JoinColumn(name = "pseudo_role_Id", referencedColumnName = "role_id")},
159                inverseJoinColumns = {@JoinColumn(name = "user_id", referencedColumnName = "user_id")},
160                indexes = {
161                        @Index(name = "fk_pseudo_role_user_id", columnList = "user_id")
162                }
163        )
164        private Set<FnUser> fnUsers;
165        @ManyToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
166        @JoinTable(
167                name = "fn_role_composite",
168                joinColumns = {@JoinColumn(name = "parent_role_id", referencedColumnName = "role_id")},
169                inverseJoinColumns = {@JoinColumn(name = "child_role_id", referencedColumnName = "role_id")},
170                indexes = {
171                        @Index(name = "fk_fn_role_composite_child", columnList = "child_role_id")
172                }
173        )
174        private Set<FnRole> fnRoles;
175        @ManyToMany(cascade = CascadeType.ALL,
176                fetch = FetchType.LAZY)
177        private Set<FnRole> fnRoleList;
178        @OneToMany(
179                targetEntity = EpRoleNotification.class,
180                mappedBy = "notificationID",
181                cascade = CascadeType.ALL,
182                fetch = FetchType.LAZY
183        )
184        private Set<EpRoleNotification> epRoleNotifications;
185        @OneToMany(
186                targetEntity = FnMenuFunctionalRoles.class,
187                mappedBy = "roleId",
188                cascade = CascadeType.ALL,
189                fetch = FetchType.LAZY
190        )
191        private Set<FnMenuFunctionalRoles> fnMenuFunctionalRoles;
192        @OneToMany(
193                targetEntity = EpWidgetCatalogRole.class,
194                mappedBy = "roleId",
195                cascade = CascadeType.ALL,
196                fetch = FetchType.LAZY
197        )
198        private Set<EpWidgetCatalogRole> epWidgetCatalogRoles;
199        @OneToMany(
200                targetEntity = EpAppRoleFunction.class,
201                mappedBy = "fnRole",
202                cascade = CascadeType.ALL,
203                fetch = FetchType.LAZY
204        )
205        private Set<EpAppRoleFunction> epAppRoleFunctions;
206        @OneToMany(
207                targetEntity = EpUserRolesRequestDet.class,
208                mappedBy = "requestedRoleId",
209                cascade = CascadeType.ALL,
210                fetch = FetchType.LAZY
211        )
212        private Set<EpUserRolesRequestDet> epUserRolesRequestDets;
213        @OneToMany(
214                targetEntity = FnUserRole.class,
215                mappedBy = "roleId",
216                cascade = CascadeType.ALL,
217                fetch = FetchType.LAZY
218        )
219        private Set<FnUserRole> fnUserRoles;
220 }