getAppRolesForUser() method up in UserRolesController
[portal.git] / portal-BE / src / main / java / org / onap / portal / domain / db / fn / FnMenuFunctional.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.ManyToOne;
57 import javax.persistence.NamedQueries;
58 import javax.persistence.NamedQuery;
59 import javax.persistence.OneToMany;
60 import javax.persistence.Table;
61 import javax.validation.Valid;
62 import javax.validation.constraints.Digits;
63 import javax.validation.constraints.NotNull;
64 import javax.validation.constraints.Pattern;
65 import javax.validation.constraints.Size;
66 import lombok.AllArgsConstructor;
67 import lombok.Getter;
68 import lombok.NoArgsConstructor;
69 import lombok.Setter;
70 import org.hibernate.validator.constraints.SafeHtml;
71 import org.hibernate.validator.constraints.URL;
72
73 /*
74 CREATE TABLE `fn_menu_functional` (
75   `menu_id` int(11) NOT NULL AUTO_INCREMENT,
76   `column_num` int(2) NOT NULL,
77   `text` varchar(100) NOT NULL,
78   `parent_menu_id` int(11) DEFAULT NULL,
79   `url` varchar(128) NOT NULL DEFAULT '',
80   `active_yn` varchar(1) NOT NULL DEFAULT 'y',
81   `image_src` varchar(100) DEFAULT NULL,
82   PRIMARY KEY (`menu_id`),
83   KEY `fk_fn_menu_func_parent_menu_id_idx` (`parent_menu_id`),
84   CONSTRAINT `fk_fn_menu_func_parent_menu_id` FOREIGN KEY (`parent_menu_id`) REFERENCES `fn_menu_functional` (`menu_id`) ON DELETE NO ACTION ON UPDATE NO ACTION
85 )
86 */
87
88 @NamedQueries({
89     @NamedQuery(
90         name = "FnMenuFunctional.retrieveByMenuId",
91         query = "from FnMenuFunctionalRoles where menuId =:menuId"
92     )
93 }
94 )
95
96 @Table(name = "fn_menu_functional", indexes = {@Index(columnList = "parent_menu_id", name = "fk_fn_menu_func_parent_menu_id_idx")
97 })
98 @NoArgsConstructor
99 @AllArgsConstructor
100 @Getter
101 @Setter
102 @Entity
103 public class FnMenuFunctional implements Serializable {
104        @Id
105        @GeneratedValue(strategy = GenerationType.AUTO)
106        @Column(name = "menu_id", nullable = false, length = 11)
107        @Digits(integer = 11, fraction = 0)
108        private Long menuId;
109        @Column(name = "column_num", nullable = false, length = 2)
110        @Digits(integer = 2, fraction = 0)
111        private Long columnNum;
112        @Column(name = "text", length = 100, nullable = false)
113        @Size(max = 100)
114        @SafeHtml
115        @NotNull
116        private String text;
117        @ManyToOne(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
118        @JoinColumn(name = "parent_menu_id")
119        @Valid
120        private FnMenuFunctional parentMenuId;
121        @Column(name = "url", length = 128, nullable = false, columnDefinition = "varchar(128) default ''")
122        @Size(max = 128)
123        @SafeHtml
124        @NotNull
125        //TODO URL
126        @URL
127        private String url;
128        @Column(name = "active_yn", length = 1, columnDefinition = "varchar(1) default 'Y'", nullable = false)
129        @Pattern(regexp = "[YNyn]")
130        @Size(max = 1)
131        @NotNull
132        @SafeHtml
133        private String activeYn;
134        @Column(name = "image_src", length = 100, columnDefinition = "varchar(100) default null")
135        @Size(max = 100)
136        @SafeHtml
137        private String imageSrc;
138        @ManyToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
139        @JoinTable(
140                name = "fn_menu_favorites",
141                joinColumns = {@JoinColumn(name = "menu_id", referencedColumnName = "menu_id")},
142                inverseJoinColumns = {@JoinColumn(name = "role_Id", referencedColumnName = "user_id")},
143                indexes = {
144                        @Index(name = "sys_c0014619", columnList = "menu_id")
145                }
146        )
147        private Set<FnUser> fnUsers;
148        @OneToMany(
149                targetEntity = FnMenuFunctionalAncestors.class,
150                mappedBy = "menuId",
151                cascade = CascadeType.ALL,
152                fetch = FetchType.LAZY
153        )
154        private Set<FnMenuFunctionalAncestors> fnMenuFunctionalAncestorsMenuId;
155        @OneToMany(
156                targetEntity = FnMenuFunctionalAncestors.class,
157                mappedBy = "ancestorMenuId",
158                cascade = CascadeType.ALL,
159                fetch = FetchType.LAZY
160        )
161        private Set<FnMenuFunctionalAncestors> fnMenuFunctionalsAncestorMenuId;
162        @OneToMany(
163                targetEntity = FnMenuFunctionalRoles.class,
164                mappedBy = "menuId",
165                cascade = CascadeType.ALL,
166                fetch = FetchType.LAZY
167        )
168        private Set<FnMenuFunctionalRoles> fnMenuFunctionalRoles;
169 }