summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominik Mizyn <d.mizyn@samsung.com>2019-08-16 11:33:52 +0200
committerDominik Mizyn <d.mizyn@samsung.com>2019-08-16 13:57:59 +0200
commit8e3c04f87f51f578f0d37ebc07a7b2f69f70d144 (patch)
treeb6571930b390e2eb8d45951f394546d0232d9511
parenta53d557e00fd9d8c339835b0588b60ebef37b7b9 (diff)
Portal Spring Boot version Hibernate implementation
Create classes that represent tables in the original database. Issue-ID: PORTAL-705 Change-Id: Ic7400732ffa58449f04330989f5801160b381b1e Signed-off-by: Dominik Mizyn <d.mizyn@samsung.com>
-rw-r--r--portal-BE/src/main/java/org/onap/portal/domain/db/ep/EpPersUserWidgetPlacement.java128
1 files changed, 128 insertions, 0 deletions
diff --git a/portal-BE/src/main/java/org/onap/portal/domain/db/ep/EpPersUserWidgetPlacement.java b/portal-BE/src/main/java/org/onap/portal/domain/db/ep/EpPersUserWidgetPlacement.java
new file mode 100644
index 00000000..bc89f51c
--- /dev/null
+++ b/portal-BE/src/main/java/org/onap/portal/domain/db/ep/EpPersUserWidgetPlacement.java
@@ -0,0 +1,128 @@
+/*
+ * ============LICENSE_START==========================================
+ * ONAP Portal
+ * ===================================================================
+ * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
+ * ===================================================================
+ * Modifications Copyright (c) 2019 Samsung
+ * ===================================================================
+ *
+ * Unless otherwise specified, all software contained herein is licensed
+ * under the Apache License, Version 2.0 (the "License");
+ * you may not use this software except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * Unless otherwise specified, all documentation contained herein is licensed
+ * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
+ * you may not use this documentation except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://creativecommons.org/licenses/by/4.0/
+ *
+ * Unless required by applicable law or agreed to in writing, documentation
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * ============LICENSE_END============================================
+ *
+ *
+ */
+
+package org.onap.portal.domain.db.ep;
+
+import javax.persistence.CascadeType;
+import javax.persistence.Column;
+import javax.persistence.Entity;
+import javax.persistence.FetchType;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import javax.persistence.Index;
+import javax.persistence.JoinColumn;
+import javax.persistence.ManyToOne;
+import javax.persistence.NamedQueries;
+import javax.persistence.NamedQuery;
+import javax.persistence.Table;
+import javax.validation.Valid;
+import javax.validation.constraints.Digits;
+import javax.validation.constraints.NotNull;
+import lombok.AllArgsConstructor;
+import lombok.Getter;
+import lombok.NoArgsConstructor;
+import lombok.Setter;
+import org.onap.portalapp.portal.domain.db.fn.FnUser;
+
+/*
+CREATE TABLE `ep_pers_user_widget_placement` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `user_id` int(11) NOT NULL,
+ `widget_id` int(11) NOT NULL,
+ `x` int(11) NOT NULL,
+ `y` int(11) DEFAULT NULL,
+ `height` int(11) DEFAULT NULL,
+ `width` int(11) DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ UNIQUE KEY `uk_1_ep_pers_user_widg_place` (`user_id`,`widget_id`),
+ KEY `fk_ep_pers_user_widg_place_ep_widg` (`widget_id`),
+ CONSTRAINT `fk_ep_pers_user_widg_place_ep_widg` FOREIGN KEY (`widget_id`) REFERENCES `ep_widget_catalog` (`widget_id`),
+ CONSTRAINT `fk_ep_pers_user_widg_place_fn_user` FOREIGN KEY (`user_id`) REFERENCES `fn_user` (`user_id`)
+ )
+*/
+
+@NamedQueries({
+ @NamedQuery(
+ name = "EpPersUserWidgetPlacement.retrieveByUserId",
+ query = "from EpPersUserWidgetPlacement where USER_ID =:userId"
+ )
+})
+
+@Table(name = "ep_pers_user_widget_placement", indexes = {
+ @Index(name = "uk_1_ep_pers_user_widg_sel_user_widg", columnList = "user_id, widget_id", unique = true),
+ @Index(name = "fk_2_ep_pers_user_wid_sel_ep_wid", columnList = "widget_id")
+})
+@NoArgsConstructor
+@AllArgsConstructor
+@Getter
+@Setter
+@Entity
+public class EpPersUserWidgetPlacement {
+ @Id
+ @GeneratedValue(strategy = GenerationType.AUTO)
+ @Column(name = "id", length = 11, nullable = false, columnDefinition = "int(11) AUTO_INCREMENT")
+ @Digits(integer = 11, fraction = 0)
+ private Long id;
+ @ManyToOne(fetch = FetchType.LAZY,cascade = CascadeType.ALL)
+ @JoinColumn(name = "user_id", nullable = false)
+ @NotNull
+ @Valid
+ private FnUser userId;
+ @ManyToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL)
+ @JoinColumn(name = "widget_id", nullable = false)
+ @NotNull
+ @Valid
+ private EpWidgetCatalog widgetId;
+ @Column(name = "x", length = 11, nullable = false)
+ @Digits(integer = 11, fraction = 0)
+ @NotNull
+ private Long x;
+ @Column(name = "y", length = 11, nullable = false)
+ @Digits(integer = 11, fraction = 0)
+ @NotNull
+ private Long y;
+ @Column(name = "height", length = 11)
+ @Digits(integer = 11, fraction = 0)
+ private Long height;
+ @Column(name = "width", length = 11)
+ @Digits(integer = 11, fraction = 0)
+ private Long width;
+}