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