Merge "Hibernate db fix"
[portal.git] / portal-BE / src / main / java / org / onap / portal / domain / db / ep / EpWidgetCatalog.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.util.Set;
44 import javax.persistence.CascadeType;
45 import javax.persistence.Column;
46 import javax.persistence.Entity;
47 import javax.persistence.FetchType;
48 import javax.persistence.GeneratedValue;
49 import javax.persistence.GenerationType;
50 import javax.persistence.Id;
51 import javax.persistence.Index;
52 import javax.persistence.JoinColumn;
53 import javax.persistence.JoinTable;
54 import javax.persistence.ManyToMany;
55 import javax.persistence.OneToMany;
56 import javax.persistence.Table;
57 import javax.validation.constraints.Digits;
58 import javax.validation.constraints.NotNull;
59 import javax.validation.constraints.Pattern;
60 import javax.validation.constraints.Size;
61 import lombok.AllArgsConstructor;
62 import lombok.Getter;
63 import lombok.NoArgsConstructor;
64 import lombok.Setter;
65 import org.hibernate.validator.constraints.SafeHtml;
66
67 /*
68 CREATE TABLE `ep_widget_catalog` (
69         `widget_id` int(11) NOT NULL AUTO_INCREMENT,
70         `wdg_name` varchar(100) NOT NULL DEFAULT '?',
71         `service_id` int(11) DEFAULT NULL,
72         `wdg_desc` varchar(200) DEFAULT NULL,
73         `wdg_file_loc` varchar(256) NOT NULL DEFAULT '?',
74         `all_user_flag` char(1) NOT NULL DEFAULT 'N',
75         PRIMARY KEY (`widget_id`)
76         )
77 */
78
79 @Table(name = "ep_widget_catalog")
80 @NoArgsConstructor
81 @AllArgsConstructor
82 @Getter
83 @Setter
84 @Entity
85 public class EpWidgetCatalog {
86        @Id
87        @GeneratedValue(strategy = GenerationType.AUTO)
88        @Column(name = "widget_id", length = 11, nullable = false)
89        @Digits(integer = 11, fraction = 0)
90        private Long widgetId;
91        @Column(name = "wdg_name", length = 100, columnDefinition = "varchar(100) default '?'", nullable = false)
92        @Size(max = 100)
93        @NotNull
94        @SafeHtml
95        private String wdgName;
96        @Column(name = "service_id", length = 11)
97        @Digits(integer = 11, fraction = 0)
98        private Long serviceId;
99        @Column(name = "wdg_desc", length = 200)
100        @Size(max = 200)
101        @SafeHtml
102        private String wdgDesc;
103        @Column(name = "wdg_file_loc", length = 256, nullable = false, columnDefinition = "varchar(256) not null default '?'")
104        @Size(max = 256)
105        @NotNull
106        @SafeHtml
107        private String wdgFileLoc;
108        @Column(name = "all_user_flag", length = 1, columnDefinition = "char(1) not null default 'N'", nullable = false)
109        @Pattern(regexp = "[YNyn]")
110        @Size(max = 1)
111        @SafeHtml
112        @NotNull
113        private String allUserFlag;
114        @ManyToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
115        @JoinTable(
116                name = "ep_widget_microservice",
117                joinColumns = {@JoinColumn(name = "widget_id", referencedColumnName = "widget_id")},
118                inverseJoinColumns = {@JoinColumn(name = "microservice_id", referencedColumnName = "id")},
119                indexes = {
120                        @Index(name = "FK_EP_WIDGET_MICROSERVICE_EP_MICROSERVICE", columnList = "microservice_id"),
121                        @Index(name = "FK_EP_WIDGET_MICROSERVICE_EP_WIDGET", columnList = "widget_id")
122                }
123        )
124        private Set<EpMicroservice> epMicroservices;
125        @OneToMany(
126                targetEntity = EpWidgetCatalogRole.class,
127                mappedBy = "widgetId",
128                cascade = CascadeType.ALL,
129                fetch = FetchType.LAZY
130        )
131        private Set<EpWidgetCatalogRole> widgetCatalogRoles;
132        @OneToMany(
133                targetEntity = EpPersUserWidgetSel.class,
134                mappedBy = "widgetId",
135                cascade = CascadeType.ALL,
136                fetch = FetchType.LAZY
137        )
138        private Set<EpPersUserWidgetSel> epPersUserWidgetSels;
139        @OneToMany(
140                targetEntity = EpPersUserWidgetSel.class,
141                mappedBy = "widgetId",
142                cascade = CascadeType.ALL,
143                fetch = FetchType.LAZY
144        )
145        private Set<EpPersUserWidgetSel> persUserWidgetSels;
146        @OneToMany(
147                targetEntity = EpPersUserWidgetPlacement.class,
148                mappedBy = "widgetId",
149                cascade = CascadeType.ALL,
150                fetch = FetchType.LAZY
151        )
152        private Set<EpPersUserWidgetPlacement> epPersUserWidgetPlacements;
153        @OneToMany(
154                targetEntity = EpWidgetCatalogParameter.class,
155                mappedBy = "widgetId",
156                cascade = CascadeType.ALL,
157                fetch = FetchType.LAZY
158        )
159        private Set<EpWidgetCatalogParameter> epWidgetCatalogParameters;
160 }