[PORTAL-7] Rebase
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / transport / FunctionalMenuItem.java
1 /*-\r
2  * ================================================================================\r
3  * ECOMP Portal\r
4  * ================================================================================\r
5  * Copyright (C) 2017 AT&T Intellectual Property\r
6  * ================================================================================\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  * \r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * \r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  * ================================================================================\r
19  */\r
20 package org.openecomp.portalapp.portal.transport;\r
21 \r
22 import java.io.Serializable;\r
23 import java.util.List;\r
24 \r
25 import javax.persistence.Column;\r
26 import javax.persistence.Entity;\r
27 import javax.persistence.GeneratedValue;\r
28 import javax.persistence.GenerationType;\r
29 import javax.persistence.Id;\r
30 import javax.persistence.Table;\r
31 import javax.persistence.Transient;\r
32 \r
33 @Entity\r
34 @Table(name="fn_menu_functional")\r
35 public class FunctionalMenuItem implements Serializable {\r
36         public FunctionalMenuItem(){};\r
37         \r
38         private static final long serialVersionUID = 1L;\r
39 \r
40         @Id\r
41     @GeneratedValue(strategy=GenerationType.IDENTITY)\r
42         @Column(name = "MENU_ID")\r
43         public Long menuId;\r
44         \r
45         @Column(name = "COLUMN_NUM")\r
46         public Integer column;\r
47         \r
48         @Column(name = "TEXT")\r
49         public String text;\r
50         \r
51         @Column(name = "PARENT_MENU_ID")\r
52         public Integer parentMenuId;\r
53         \r
54         @Column(name = "URL")\r
55         public String url;\r
56         \r
57         @Column(name="ACTIVE_YN")\r
58         public String active_yn;\r
59 \r
60         @Transient\r
61         public Integer appid;\r
62         \r
63         public List<Integer> getRoles() {\r
64                 return roles;\r
65         }\r
66 \r
67         public void setRoles(List<Integer> roles) {\r
68                 this.roles = roles;\r
69         }\r
70 \r
71         @Transient\r
72         private List<Integer> roles;\r
73         \r
74         @Transient\r
75         public Boolean restrictedApp;\r
76         \r
77         public void normalize() {\r
78                 if (this.column == null)\r
79                         this.column = new Integer(1);\r
80                 this.text = (this.text == null) ? "" : this.text.trim();\r
81                 if (this.parentMenuId == null)\r
82                         this.parentMenuId = new Integer(-1);\r
83                 this.url = (this.url == null) ? "" : this.url.trim();\r
84         }\r
85 \r
86         @Override\r
87         public String toString() {\r
88                 return "FunctionalMenuItem [menuId=" + menuId + ", column=" + column + ", text=" + text + ", parentMenuId="\r
89                                 + parentMenuId + ", url=" + url + ", active_yn=" + active_yn + ", appid=" + appid + ", roles=" + roles\r
90                                 + ", restrictedApp=" + restrictedApp + "]";\r
91         }\r
92 \r
93         public void setUrl(String url) {\r
94                 this.url = url;\r
95         }\r
96 \r
97         public void setRestrictedApp(Boolean restrictedApp) {\r
98                 this.restrictedApp = restrictedApp;\r
99         }\r
100 }\r