Domain model change
[portal.git] / portal-BE / src / main / java / org / onap / portal / domain / db / cr / CrReportAccess.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.cr;
42
43 import java.io.Serializable;
44 import javax.persistence.CascadeType;
45 import javax.persistence.Column;
46 import javax.persistence.Entity;
47 import javax.persistence.FetchType;
48 import javax.persistence.Id;
49 import javax.persistence.IdClass;
50 import javax.persistence.JoinColumn;
51 import javax.persistence.ManyToOne;
52 import javax.persistence.Table;
53 import javax.validation.Valid;
54 import javax.validation.constraints.Digits;
55 import javax.validation.constraints.NotNull;
56 import javax.validation.constraints.Pattern;
57 import javax.validation.constraints.Positive;
58 import lombok.AllArgsConstructor;
59 import lombok.EqualsAndHashCode;
60 import lombok.Getter;
61 import lombok.NoArgsConstructor;
62 import lombok.Setter;
63 import org.hibernate.validator.constraints.SafeHtml;
64 import org.onap.portal.domain.db.cr.CrReportAccess.CrReportAccessId;
65
66 /*
67
68 CREATE TABLE `cr_report_access` (
69         `rep_id` decimal(11,0) NOT NULL,
70         `order_no` decimal(11,0) NOT NULL,
71         `role_id` decimal(11,0) DEFAULT NULL,
72         `user_id` decimal(11,0) DEFAULT NULL,
73         `read_only_yn` varchar(1) NOT NULL DEFAULT 'n',
74         PRIMARY KEY (`rep_id`,`order_no`),
75         CONSTRAINT `fk_cr_repor_ref_8550_cr_repor` FOREIGN KEY (`rep_id`) REFERENCES `cr_report` (`rep_id`)
76         )
77 */
78
79
80 @Table(name = "cr_report_access")
81 @NoArgsConstructor
82 @AllArgsConstructor
83
84 @Getter
85 @Setter
86 @Entity
87 @IdClass(CrReportAccessId.class)
88 public class CrReportAccess implements Serializable{
89        @Id
90        @ManyToOne(cascade = CascadeType.MERGE, fetch = FetchType.LAZY)
91        @JoinColumn(name = "rep_id")
92        @Valid
93        private CrReport repId;
94        @Id
95        @Column(name = "order_no", length = 11, nullable = false)
96        @Digits(integer = 11, fraction = 0)
97        @Positive
98        @NotNull
99        private Long orderNo;
100        @Column(name = "role_id", columnDefinition = "decimal(11,0) DEFAULT NULL")
101        @Digits(integer = 11, fraction = 0)
102        @Positive
103        private Long roleId;
104        @Column(name = "user_id", columnDefinition = "decimal(11,0) DEFAULT NULL")
105        @Digits(integer = 11, fraction = 0)
106        @Positive
107        private Long userId;
108        @Column(name = "menu_approved_yn", nullable = false, length = 1, columnDefinition = "character varying(1) default 'n'")
109        @Pattern(regexp = "[YNyn]")
110        @SafeHtml
111        @NotNull
112        private String menuApprovedYn;
113
114        @NoArgsConstructor
115        @AllArgsConstructor
116        @EqualsAndHashCode
117        @Getter
118        @Setter
119        public static class CrReportAccessId implements Serializable{
120               private CrReport repId;
121               private Long orderNo;
122        }
123 }