WidgetsController test coverage up
[portal.git] / portal-BE / src / main / java / org / onap / portal / domain / db / fn / FnUserRole.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 javax.persistence.CascadeType;
45 import javax.persistence.Column;
46 import javax.persistence.Entity;
47 import javax.persistence.FetchType;
48 import javax.persistence.GeneratedValue;
49 import javax.persistence.GenerationType;
50 import javax.persistence.Id;
51 import javax.persistence.Index;
52 import javax.persistence.JoinColumn;
53 import javax.persistence.ManyToOne;
54 import javax.persistence.NamedNativeQueries;
55 import javax.persistence.NamedNativeQuery;
56 import javax.persistence.NamedQueries;
57 import javax.persistence.NamedQuery;
58 import javax.persistence.OneToOne;
59 import javax.persistence.Table;
60 import javax.persistence.UniqueConstraint;
61 import javax.validation.Valid;
62 import javax.validation.constraints.Digits;
63 import lombok.AllArgsConstructor;
64 import lombok.Getter;
65 import lombok.NoArgsConstructor;
66 import lombok.Setter;
67
68 /*
69 CREATE TABLE `fn_user_role` (
70         `user_id` int(10) NOT NULL,
71         `role_id` int(10) NOT NULL,
72         `priority` decimal(4,0) DEFAULT NULL,
73         `app_id` int(11) NOT NULL DEFAULT 2,
74         PRIMARY KEY (`user_id`,`role_id`,`app_id`),
75         KEY `fn_user_role_role_id` (`role_id`) USING BTREE,
76         KEY `fn_user_role_user_id` (`user_id`) USING BTREE,
77         KEY `fk_fn_user__ref_178_fn_app_idx` (`app_id`),
78         CONSTRAINT `fk_fn_user__ref_172_fn_user` FOREIGN KEY (`user_id`) REFERENCES `fn_user` (`user_id`),
79         CONSTRAINT `fk_fn_user__ref_175_fn_role` FOREIGN KEY (`role_id`) REFERENCES `fn_role` (`role_id`),
80         CONSTRAINT `fk_fn_user__ref_178_fn_app` FOREIGN KEY (`app_id`) REFERENCES `fn_app` (`app_id`)
81         )
82 */
83
84 @NamedNativeQueries({
85         @NamedNativeQuery(
86                 name = "FnUserRole.retrieveUserRoleOnUserIdAndRoleIdAndAppId",
87                 query = "FROM FnUserRole where user_id= :userId"
88                         + " and role_id= :roleId"
89                         + " and app_id= :appId"),
90         @NamedNativeQuery(
91                 name = "FnUserRole.retrieveCachedAppRolesForUser",
92                 query = "FROM FnUserRole where user_id= :userId"
93                         + " and user_id= :userId"
94                         + " and app_id= :appId")
95 })
96
97 @NamedQueries({
98         @NamedQuery(
99                 name = "FnUserRole.getAdminUserRoles",
100                 query = "FROM FnUserRole fn "
101                         + "WHERE  fn.userId.userId = :USERID "
102                         + "AND fn.roleId.roleId = :ROLEID "
103                         + "AND fn.appId.appId = :APPID")
104 })
105
106 @Table(
107         name = "fn_user_role",
108         indexes = {
109                 @Index(name = "fn_user_role_role_id", columnList = "role_id"),
110                 @Index(name = "fn_user_role_user_id", columnList = "user_id"),
111                 @Index(name = "fk_fn_user__ref_178_fn_app_idx", columnList = "app_id")},
112         uniqueConstraints = {
113                 @UniqueConstraint(name = "fn_user_role_id", columnNames = {"role_id", "user_id", "app_id"})
114         })
115 @NoArgsConstructor
116 @AllArgsConstructor
117
118 @Getter
119 @Setter
120 @Entity
121 public class FnUserRole implements Serializable {
122
123        @Id
124        @GeneratedValue(strategy = GenerationType.AUTO)
125        @Column(name = "id", columnDefinition = "int(11) auto_increment")
126        private Long id;
127        @ManyToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL)
128        @JoinColumn(name = "user_id")
129        @Valid
130        private FnUser userId;
131        @OneToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL)
132        @JoinColumn(name = "role_id")
133        @Valid
134        private FnRole roleId;
135        @Column(name = "priority", length = 4, columnDefinition = "decimal(4,0) DEFAULT NULL")
136        @Digits(integer = 4, fraction = 0)
137        private Long priority;
138        @ManyToOne(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
139        @JoinColumn(name = "app_Id")
140        @Valid
141        private FnApp appId;
142 }