2 * ============LICENSE_START==========================================
4 * ===================================================================
5 * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6 * ===================================================================
7 * Modifications Copyright (c) 2019 Samsung
8 * ===================================================================
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
15 * http://www.apache.org/licenses/LICENSE-2.0
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.
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
28 * https://creativecommons.org/licenses/by/4.0/
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.
36 * ============LICENSE_END============================================
41 package org.onap.portal.domain.db.ep;
43 import java.io.Serializable;
44 import java.time.LocalDateTime;
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;
65 import lombok.NoArgsConstructor;
67 import org.hibernate.validator.constraints.SafeHtml;
68 import org.onap.portal.domain.db.DomainVo;
69 import org.onap.portal.domain.db.fn.FnApp;
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`)
84 name = "EpAppFunction.getAppRoleFunctionList",
85 query = "SELECT DISTINCT f from\n"
86 + " EpAppRoleFunction rf,\n"
87 + " EpAppFunction f\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"
95 name = "EpAppFunction.getAllRoleFunctions",
96 query = "from EpAppFunction where appId.id =:appId"
99 name = "EpAppFunction.getAppFunctionOnCodeAndAppId",
100 query = "from EpAppFunction where appId.id =:appId and functionCd =:functionCd "
103 name = "EpAppFunction.getRoleFunction",
104 query = "from EpAppFunction where functionCd like CONCAT('%', :functionCode,'%') and appId.id =:appId"
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)})
117 public class EpAppFunction extends DomainVo implements Serializable {
119 @ManyToOne(cascade = CascadeType.MERGE, fetch = FetchType.LAZY)
120 @JoinColumn(name = "app_id", columnDefinition = "bigint")
123 @Column(name = "function_cd", length = 250, nullable = false)
127 private String functionCd;
128 @Column(name = "function_name", length = 250, nullable = false)
132 private String functionName;
137 private String action;
139 private String editUrl;
142 targetEntity = EpAppRoleFunction.class,
143 mappedBy = "epAppFunction",
144 cascade = CascadeType.MERGE,
145 fetch = FetchType.LAZY
147 private Set<EpAppRoleFunction> epAppRoleFunctions;
149 public EpAppFunction(Long id, String code, String name, FnApp appId, String type, String action, String editUrl) {
152 this.functionCd = code;
153 this.functionName = name;
156 this.action = action;
157 this.editUrl = editUrl;
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);
170 this.functionCd = functionCd;
171 this.functionName = functionName;
172 this.roleId = roleId;
174 this.action = action;
175 this.editUrl = editUrl;
176 this.epAppRoleFunctions = epAppRoleFunctions;