Fixed health check issue
[portal.git] / portal-BE / src / main / java / org / onap / portal / domain / db / ep / EpAppFunction.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.ep;
42
43 import java.io.Serializable;
44 import java.time.LocalDateTime;
45 import java.util.Set;
46 import javax.persistence.CascadeType;
47 import javax.persistence.Column;
48 import javax.persistence.Entity;
49 import javax.persistence.FetchType;
50 import javax.persistence.Index;
51 import javax.persistence.JoinColumn;
52 import javax.persistence.ManyToOne;
53 import javax.persistence.NamedNativeQuery;
54 import javax.persistence.NamedQueries;
55 import javax.persistence.NamedQuery;
56 import javax.persistence.OneToMany;
57 import javax.persistence.Table;
58 import javax.validation.Valid;
59 import javax.validation.constraints.Digits;
60 import javax.validation.constraints.NotNull;
61 import javax.validation.constraints.Size;
62 import lombok.AllArgsConstructor;
63 import lombok.Builder;
64 import lombok.Getter;
65 import lombok.NoArgsConstructor;
66 import lombok.Setter;
67 import org.hibernate.validator.constraints.SafeHtml;
68 import org.onap.portal.domain.db.DomainVo;
69 import org.onap.portal.domain.db.fn.FnApp;
70
71 /*
72 CREATE TABLE `ep_app_function` (
73         `app_id` int(11) NOT NULL,
74         `function_cd` varchar(250) NOT NULL,
75         `function_name` varchar(250) NOT NULL,
76         PRIMARY KEY (`function_cd`,`app_id`),
77         KEY `fk_ep_app_function_app_id` (`app_id`),
78         CONSTRAINT `fk_ep_app_function_app_id` FOREIGN KEY (`app_id`) REFERENCES `fn_app` (`app_id`)
79         )
80 */
81
82 @NamedQueries({
83     @NamedQuery(
84         name = "EpAppFunction.getAppRoleFunctionList",
85         query = "SELECT DISTINCT f from\n"
86             + "  EpAppRoleFunction rf,\n"
87             + "  EpAppFunction f\n"
88             + " where\n"
89             + "  rf.fnRole.id = :roleId\n"
90             + "  and rf.appId.id = :appId\n"
91             + "  and rf.appId.id = f.appId.id\n"
92             + "  and rf.epAppFunction.functionCd = f.functionCd"
93     ),
94     @NamedQuery(
95         name = "EpAppFunction.getAllRoleFunctions",
96         query = "from EpAppFunction where appId.id =:appId"
97     ),
98     @NamedQuery(
99         name = "EpAppFunction.getAppFunctionOnCodeAndAppId",
100         query = "from EpAppFunction where appId.id =:appId and functionCd =:functionCd "
101     ),
102     @NamedQuery(
103         name = "EpAppFunction.getRoleFunction",
104         query = "from EpAppFunction where functionCd like CONCAT('%', :functionCode,'%') and appId.id =:appId"
105     )
106 })
107
108 @Table(name = "ep_app_function", indexes = {
109     @Index(name = "fk_ep_app_function_app_id", columnList = "app_id"),
110     @Index(name = "fk_ep_app_id_function_cd", columnList = "app_id, function_cd", unique = true)})
111
112 @Getter
113 @Setter
114 @Entity
115 @NoArgsConstructor
116 @AllArgsConstructor
117 public class EpAppFunction extends DomainVo implements Serializable {
118
119   @ManyToOne(cascade = CascadeType.MERGE, fetch = FetchType.LAZY)
120   @JoinColumn(name = "app_id", columnDefinition = "bigint")
121   @Valid
122   private FnApp appId;
123   @Column(name = "function_cd", length = 250, nullable = false)
124   @Size(max = 250)
125   @NotNull
126   @SafeHtml
127   private String functionCd;
128   @Column(name = "function_name", length = 250, nullable = false)
129   @Size(max = 250)
130   @NotNull
131   @SafeHtml
132   private String functionName;
133
134   private Long roleId;
135   private String type;
136   @SafeHtml
137   private String action;
138   @SafeHtml
139   private String editUrl;
140
141   @OneToMany(
142       targetEntity = EpAppRoleFunction.class,
143       mappedBy = "epAppFunction",
144       cascade = CascadeType.MERGE,
145       fetch = FetchType.LAZY
146   )
147   private Set<EpAppRoleFunction> epAppRoleFunctions;
148
149   public EpAppFunction(Long id, String code, String name, FnApp appId, String type, String action, String editUrl) {
150     super();
151     super.setId(id);
152     this.functionCd = code;
153     this.functionName = name;
154     this.appId = appId;
155     this.type = type;
156     this.action = action;
157     this.editUrl = editUrl;
158   }
159
160   @Builder
161   public EpAppFunction(@Digits(integer = 11, fraction = 0) Long id, LocalDateTime created,
162       LocalDateTime modified, Long rowNum, Serializable auditUserId, DomainVo createdId,
163       DomainVo modifiedId, Set<DomainVo> fnUsersCreatedId,
164       Set<DomainVo> fnUsersModifiedId, @Valid FnApp appId,
165       @Size(max = 250) @NotNull String functionCd,
166       @Size(max = 250) @NotNull String functionName, Long roleId, String type, String action, String editUrl,
167       Set<EpAppRoleFunction> epAppRoleFunctions) {
168     super(id, created, modified, rowNum, auditUserId, createdId, modifiedId, fnUsersCreatedId, fnUsersModifiedId);
169     this.appId = appId;
170     this.functionCd = functionCd;
171     this.functionName = functionName;
172     this.roleId = roleId;
173     this.type = type;
174     this.action = action;
175     this.editUrl = editUrl;
176     this.epAppRoleFunctions = epAppRoleFunctions;
177   }
178 }
179