Merge "JUnit/SONAR/Checkstyle in ONAP-REST"
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / DescriptiveScope.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-REST
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.rest.jpa;
23
24 import java.io.Serializable;
25 import java.util.Date;
26
27 import javax.persistence.Column;
28 import javax.persistence.Entity;
29 import javax.persistence.GeneratedValue;
30 import javax.persistence.GenerationType;
31 import javax.persistence.Id;
32 import javax.persistence.JoinColumn;
33 import javax.persistence.ManyToOne;
34 import javax.persistence.NamedQuery;
35 import javax.persistence.OrderBy;
36 import javax.persistence.PrePersist;
37 import javax.persistence.PreUpdate;
38 import javax.persistence.Table;
39 import javax.persistence.Temporal;
40 import javax.persistence.TemporalType;
41
42 /**
43  * The Class DescriptiveScope.
44  */
45 @Entity
46 @Table(name = "DescriptiveScope")
47 @NamedQuery(name = "DescriptiveScope.findAll", query = "Select p from DescriptiveScope p")
48 public class DescriptiveScope implements Serializable {
49     private static final long serialVersionUID = 1L;
50     @Id
51     @GeneratedValue(strategy = GenerationType.AUTO)
52     @Column(name = "Id")
53     private int id;
54
55     @Column(name = "scopename", nullable = false)
56     @OrderBy("asc")
57     private String descriptiveScopeName;
58
59     @Column(name = "description", nullable = true, length = 2048)
60     private String description;
61
62     @Column(name = "search", nullable = true)
63     @OrderBy("asc")
64     private String search;
65
66     @Temporal(TemporalType.TIMESTAMP)
67     @Column(name = "created_date", updatable = false)
68     private Date createdDate;
69
70     @Temporal(TemporalType.TIMESTAMP)
71     @Column(name = "modified_date", nullable = false)
72     private Date modifiedDate;
73
74     @ManyToOne(optional = false)
75     @JoinColumn(name = "created_by")
76     private UserInfo userCreatedBy;
77
78     @ManyToOne(optional = false)
79     @JoinColumn(name = "modified_by")
80     private UserInfo userModifiedBy;
81
82     /**
83      * Gets the user created by.
84      *
85      * @return the user created by
86      */
87     public UserInfo getUserCreatedBy() {
88         return userCreatedBy;
89     }
90
91     /**
92      * Sets the user created by.
93      *
94      * @param userCreatedBy the new user created by
95      */
96     public void setUserCreatedBy(UserInfo userCreatedBy) {
97         this.userCreatedBy = userCreatedBy;
98     }
99
100     /**
101      * Gets the user modified by.
102      *
103      * @return the user modified by
104      */
105     public UserInfo getUserModifiedBy() {
106         return userModifiedBy;
107     }
108
109     /**
110      * Sets the user modified by.
111      *
112      * @param userModifiedBy the new user modified by
113      */
114     public void setUserModifiedBy(UserInfo userModifiedBy) {
115         this.userModifiedBy = userModifiedBy;
116     }
117
118     /**
119      * Pre persist.
120      */
121     @PrePersist
122     public void prePersist() {
123         Date date = new Date();
124         this.createdDate = date;
125         this.modifiedDate = date;
126     }
127
128     /**
129      * Pre update.
130      */
131     @PreUpdate
132     public void preUpdate() {
133         this.modifiedDate = new Date();
134     }
135
136     /**
137      * Gets the id.
138      *
139      * @return the id
140      */
141     public int getId() {
142         return this.id;
143     }
144
145     /**
146      * Sets the id.
147      *
148      * @param id the new id
149      */
150     public void setId(int id) {
151         this.id = id;
152     }
153
154     /**
155      * Gets the scope name.
156      *
157      * @return the scope name
158      */
159     public String getScopeName() {
160         return descriptiveScopeName;
161     }
162
163     /**
164      * Sets the scope name.
165      *
166      * @param descriptiveScopeName the new scope name
167      */
168     public void setScopeName(String descriptiveScopeName) {
169         this.descriptiveScopeName = descriptiveScopeName;
170     }
171
172     /**
173      * Gets the search.
174      *
175      * @return the search
176      */
177     public String getSearch() {
178         return search;
179     }
180
181     /**
182      * Sets the search.
183      *
184      * @param search the new search
185      */
186     public void setSearch(String search) {
187         this.search = search;
188     }
189
190     /**
191      * Gets the created date.
192      *
193      * @return the created date
194      */
195     public Date getCreatedDate() {
196         return this.createdDate;
197     }
198
199     /**
200      * Sets the created date.
201      *
202      * @param createdDate the new created date
203      */
204     public void setCreatedDate(Date createdDate) {
205         this.createdDate = createdDate;
206     }
207
208     /**
209      * Gets the description.
210      *
211      * @return the description
212      */
213     public String getDescription() {
214         return this.description;
215     }
216
217     /**
218      * Sets the description.
219      *
220      * @param description the new description
221      */
222     public void setDescription(String description) {
223         this.description = description;
224     }
225
226     /**
227      * Gets the modified date.
228      *
229      * @return the modified date
230      */
231     public Date getModifiedDate() {
232         return this.modifiedDate;
233     }
234
235     /**
236      * Sets the modified date.
237      *
238      * @param modifiedDate the new modified date
239      */
240     public void setModifiedDate(Date modifiedDate) {
241         this.modifiedDate = modifiedDate;
242     }
243
244 }