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