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