Portal Spring Boot version Hibernate implementation
[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.util.ArrayList;
45 import java.util.List;
46 import javax.persistence.CascadeType;
47 import javax.persistence.Column;
48 import javax.persistence.Entity;
49 import javax.persistence.FetchType;
50 import javax.persistence.Id;
51 import javax.persistence.IdClass;
52 import javax.persistence.Index;
53 import javax.persistence.JoinColumn;
54 import javax.persistence.ManyToOne;
55 import javax.persistence.OneToMany;
56 import javax.persistence.Table;
57 import javax.validation.Valid;
58 import javax.validation.constraints.NotNull;
59 import javax.validation.constraints.Size;
60 import lombok.AllArgsConstructor;
61 import lombok.EqualsAndHashCode;
62 import lombok.Getter;
63 import lombok.NoArgsConstructor;
64 import lombok.Setter;
65 import org.hibernate.validator.constraints.SafeHtml;
66 import org.onap.portal.domain.db.ep.EpAppFunction.EpAppFunctionId;
67 import org.onap.portal.domain.db.fn.FnApp;
68
69 /*
70 CREATE TABLE `ep_app_function` (
71         `app_id` int(11) NOT NULL,
72         `function_cd` varchar(250) NOT NULL,
73         `function_name` varchar(250) NOT NULL,
74         PRIMARY KEY (`function_cd`,`app_id`),
75         KEY `fk_ep_app_function_app_id` (`app_id`),
76         CONSTRAINT `fk_ep_app_function_app_id` FOREIGN KEY (`app_id`) REFERENCES `fn_app` (`app_id`)
77         )
78 */
79
80 @Table(name = "ep_app_function", indexes = {@Index(name = "fk_ep_app_function_app_id", columnList = "app_id")})
81 @EqualsAndHashCode
82 @Getter
83 @Setter
84 @Entity
85 @IdClass(EpAppFunctionId.class)
86 @NoArgsConstructor
87 @AllArgsConstructor
88 public class EpAppFunction {
89        @Id
90        @ManyToOne(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
91        @JoinColumn(name = "app_id")
92        @Valid
93        private FnApp appId;
94        @Id
95        @Column(name = "function_cd", length = 250, nullable = false)
96        @Size(max = 250)
97        @NotNull
98        @SafeHtml
99        private String functionCd;
100        @Column(name = "function_name", length = 250, nullable = false)
101        @Size(max = 250)
102        @NotNull
103        @SafeHtml
104        private String functionName;
105        @OneToMany(
106                targetEntity = EpAppRoleFunction.class,
107                mappedBy = "epAppFunction",
108                cascade = CascadeType.ALL,
109                fetch = FetchType.LAZY
110        )
111        private List<EpAppRoleFunction> epAppRoleFunctions = new ArrayList<>();
112
113        @Getter
114        @Setter
115        @EqualsAndHashCode
116        @NoArgsConstructor
117        @AllArgsConstructor
118        public static class EpAppFunctionId implements Serializable {
119               @Valid
120               private FnApp appId;
121               @Size(max = 250)
122               @NotNull
123               @SafeHtml
124               private String functionCd;
125        }
126 }
127