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