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