Merge "Fix sql injection vulnerability"
[portal.git] / ecomp-portal-BE-common / src / main / java / org / onap / portalapp / portal / transport / FunctionalMenuItem.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * 
37  */
38 package org.onap.portalapp.portal.transport;
39
40 import java.io.Serializable;
41 import java.util.List;
42
43 import javax.persistence.Column;
44 import javax.persistence.Entity;
45 import javax.persistence.GeneratedValue;
46 import javax.persistence.GenerationType;
47 import javax.persistence.Id;
48 import javax.persistence.Table;
49 import javax.persistence.Transient;
50 import javax.validation.constraints.Digits;
51 import javax.validation.constraints.Max;
52 import javax.validation.constraints.NotNull;
53 import lombok.AllArgsConstructor;
54 import lombok.NoArgsConstructor;
55 import org.hibernate.validator.constraints.SafeHtml;
56
57 @Entity
58 @Table(name="fn_menu_functional")
59 @NoArgsConstructor
60 @AllArgsConstructor
61 public class FunctionalMenuItem implements Serializable {
62         private static final long serialVersionUID = 1L;
63
64         @Id
65         @GeneratedValue(strategy=GenerationType.IDENTITY)
66         @Column(name = "MENU_ID")
67         @Digits(integer = 11, fraction = 0)
68         public Long menuId;
69
70         @Column(name = "COLUMN_NUM")
71         @Digits(integer = 2, fraction = 0)
72         @NotNull
73         public Integer column;
74
75         @Column(name = "TEXT")
76         @Max(value = 100)
77         @SafeHtml
78         @NotNull
79         public String text;
80
81         @Column(name = "PARENT_MENU_ID")
82         @Digits(integer = 11, fraction = 0)
83         public Integer parentMenuId;
84
85         @Column(name = "URL")
86         @Max(value = 128)
87         @SafeHtml
88         @NotNull
89         public String url;
90
91         @Column(name="ACTIVE_YN")
92         @Max(value = 1)
93         @SafeHtml
94         @NotNull
95         public String active_yn;
96
97         @Transient
98         public Integer appid;
99         
100         @Transient
101         private List<Integer> roles;
102
103         @Transient
104         public Boolean restrictedApp;
105
106         public List<Integer> getRoles() {
107                 return roles;
108         }
109
110         public void setRoles(List<Integer> roles) {
111                 this.roles = roles;
112         }
113
114         public void normalize() {
115                 if (this.column == null)
116                         this.column = 1;
117                 this.text = (this.text == null) ? "" : this.text.trim();
118                 if (this.parentMenuId == null)
119                         this.parentMenuId = -1;
120                 this.url = (this.url == null) ? "" : this.url.trim();
121         }
122
123         @Override
124         public String toString() {
125                 return "FunctionalMenuItem [menuId=" + menuId + ", column=" + column + ", text=" + text + ", parentMenuId="
126                                 + parentMenuId + ", url=" + url + ", active_yn=" + active_yn + ", appid=" + appid + ", roles=" + roles
127                                 + ", restrictedApp=" + restrictedApp + "]";
128         }
129
130         public void setUrl(String url) {
131                 this.url = url;
132         }
133
134         public void setRestrictedApp(Boolean restrictedApp) {
135                 this.restrictedApp = restrictedApp;
136         }
137 }