Domain model change
[portal.git] / portal-BE / src / main / java / org / onap / portal / domain / db / fn / FnQzJobDetails.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.fn;
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.Id;
50 import javax.persistence.IdClass;
51 import javax.persistence.Index;
52 import javax.persistence.OneToMany;
53 import javax.persistence.Table;
54 import javax.validation.constraints.NotNull;
55 import javax.validation.constraints.Size;
56 import lombok.AllArgsConstructor;
57 import lombok.Builder;
58 import lombok.EqualsAndHashCode;
59 import lombok.Getter;
60 import lombok.NoArgsConstructor;
61 import lombok.Setter;
62 import org.hibernate.validator.constraints.SafeHtml;
63 import org.onap.portal.domain.db.fn.FnQzJobDetails.FnQzJobDetailsID;
64
65 /*
66 CREATE TABLE `fn_qz_job_details` (
67         `SCHED_NAME` varchar(120) NOT NULL,
68         `JOB_NAME` varchar(200) NOT NULL,
69         `JOB_GROUP` varchar(200) NOT NULL,
70         `DESCRIPTION` varchar(250) DEFAULT NULL,
71         `JOB_CLASS_NAME` varchar(250) NOT NULL,
72         `IS_DURABLE` varchar(1) NOT NULL,
73         `IS_NONCONCURRENT` varchar(1) NOT NULL,
74         `IS_UPDATE_DATA` varchar(1) NOT NULL,
75         `REQUESTS_RECOVERY` varchar(1) NOT NULL,
76         `JOB_DATA` blob DEFAULT NULL,
77         PRIMARY KEY (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`),
78         KEY `idx_fn_qz_j_req_recovery` (`SCHED_NAME`,`REQUESTS_RECOVERY`),
79         KEY `idx_fn_qz_j_grp` (`SCHED_NAME`,`JOB_GROUP`)
80         )
81 */
82
83 @Table(name = "fn_qz_job_details", indexes = {
84         @Index(name = "idx_fn_qz_j_req_recovery", columnList = "sched_name,requests_recovery"),
85         @Index(name = "idx_fn_qz_j_grp", columnList = "sched_name, job_group")
86 })
87 @NoArgsConstructor
88 @AllArgsConstructor
89 @Builder
90 @Getter
91 @Setter
92 @Entity
93 @IdClass(FnQzJobDetailsID.class)
94 public class FnQzJobDetails implements Serializable{
95        @Id
96        @SafeHtml
97        @Size(max = 120)
98        @Column(name = "SCHED_NAME", length = 120)
99        private String schedName;
100        @Id
101        @SafeHtml
102        @Size(max = 200)
103        @Column(name = "JOB_NAME", length = 200)
104        private String jobName;
105        @Id
106        @SafeHtml
107        @Size(max = 200)
108        @Column(name = "JOB_GROUP", length = 200)
109        private String jobGroup;
110        @Column(name = "DESCRIPTION", length = 250, columnDefinition = "varchar(250) DEFAULT NULL")
111        @Size(max = 250)
112        @SafeHtml
113        private String description;
114        @Column(name = "JOB_CLASS_NAME", length = 250, nullable = false)
115        @Size(max = 250)
116        @SafeHtml
117        @NotNull
118        private String jobClassName;
119        @Column(name = "IS_DURABLE", nullable = false)
120        @NotNull
121        private Boolean isDurable;
122        @Column(name = "IS_NONCONCURRENT", nullable = false)
123        @NotNull
124        private Boolean isNonconcurrent;
125        @Column(name = "IS_UPDATE_DATA", nullable = false)
126        @NotNull
127        private Boolean isUpdateData;
128        @Column(name = "REQUESTS_RECOVERY", nullable = false)
129        @NotNull
130        private Boolean requestsRecovery;
131        @Column(name = "JOB_DATA", columnDefinition = "blob DEFAULT NULL")
132        private byte[] jobData;
133
134        @OneToMany(
135                targetEntity = FnQzTriggers.class,
136                mappedBy = "fnQzJobDetails",
137                cascade = CascadeType.MERGE,
138                fetch = FetchType.LAZY
139        )
140        private Set<FnQzTriggers> selectedTabCd;
141
142        @Getter
143        @Setter
144        @NoArgsConstructor
145        @EqualsAndHashCode
146        @AllArgsConstructor
147        public static class FnQzJobDetailsID implements Serializable {
148               @Size(max = 120)
149               @SafeHtml
150               private String schedName;
151               @Size(max = 200)
152               @SafeHtml
153               private String jobName;
154               @Size(max = 200)
155               @SafeHtml
156               private String jobGroup;
157        }
158
159 }