JUnit/SONAR/Checkstyle in ONAP-REST
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / ClosedLoopSite.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-REST
4  * ================================================================================
5  * Copyright (C) 2017-2019 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 /*
25  *
26  */
27 import java.io.Serializable;
28 import java.util.Date;
29
30 import javax.persistence.Column;
31 import javax.persistence.Entity;
32 import javax.persistence.GeneratedValue;
33 import javax.persistence.GenerationType;
34 import javax.persistence.Id;
35 import javax.persistence.JoinColumn;
36 import javax.persistence.ManyToOne;
37 import javax.persistence.NamedQuery;
38 import javax.persistence.OrderBy;
39 import javax.persistence.PrePersist;
40 import javax.persistence.PreUpdate;
41 import javax.persistence.Table;
42 import javax.persistence.Temporal;
43 import javax.persistence.TemporalType;
44
45 /**
46  * The Class ClosedLoopSite.
47  */
48 @Entity
49 @Table(name = "ClosedLoopSite")
50 @NamedQuery(name = "ClosedLoopSite.findAll", query = "SELECT c FROM ClosedLoopSite c ")
51 public class ClosedLoopSite implements Serializable {
52     private static final long serialVersionUID = 1L;
53
54     @Id
55     @Column(name = "id")
56     @GeneratedValue(strategy = GenerationType.AUTO)
57     private int id;
58
59     @Column(name = "site_Name", nullable = false, unique = true)
60     @OrderBy("asc")
61     private String siteName;
62
63     @Column(name = "description", nullable = true, length = 2048)
64     private String description;
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      * Instantiates a new closed loop site.
84      */
85     public ClosedLoopSite() {
86         this.setModifiedDate(new Date());
87     }
88
89     /**
90      * Gets the user created by.
91      *
92      * @return the user created by
93      */
94     public UserInfo getUserCreatedBy() {
95         return userCreatedBy;
96     }
97
98     /**
99      * Sets the user created by.
100      *
101      * @param userCreatedBy the new user created by
102      */
103     public void setUserCreatedBy(UserInfo userCreatedBy) {
104         this.userCreatedBy = userCreatedBy;
105     }
106
107     /**
108      * Gets the user modified by.
109      *
110      * @return the user modified by
111      */
112     public UserInfo getUserModifiedBy() {
113         return userModifiedBy;
114     }
115
116     /**
117      * Sets the user modified by.
118      *
119      * @param userModifiedBy the new user modified by
120      */
121     public void setUserModifiedBy(UserInfo userModifiedBy) {
122         this.userModifiedBy = userModifiedBy;
123     }
124
125     /**
126      * Pre persist.
127      */
128     @PrePersist
129     public void prePersist() {
130         Date date = new Date();
131         this.createdDate = date;
132         this.modifiedDate = date;
133     }
134
135     /**
136      * Pre update.
137      */
138     @PreUpdate
139     public void preUpdate() {
140         this.modifiedDate = new Date();
141     }
142
143     /**
144      * Gets the id.
145      *
146      * @return the id
147      */
148     public int getId() {
149         return id;
150     }
151
152     /**
153      * Sets the id.
154      *
155      * @param id the new id
156      */
157     public void setId(int id) {
158         this.id = id;
159     }
160
161     /**
162      * Gets the site name.
163      *
164      * @return the site name
165      */
166     public String getSiteName() {
167         return siteName;
168     }
169
170     /**
171      * Sets the site name.
172      *
173      * @param siteName the new site name
174      */
175     public void setSiteName(String siteName) {
176         this.siteName = siteName;
177     }
178
179     /**
180      * Gets the description.
181      *
182      * @return the description
183      */
184     public String getDescription() {
185         return description;
186     }
187
188     /**
189      * Sets the description.
190      *
191      * @param description the new description
192      */
193     public void setDescription(String description) {
194         this.description = description;
195     }
196
197     /**
198      * Gets the created date.
199      *
200      * @return the created date
201      */
202     public Date getCreatedDate() {
203         return createdDate;
204     }
205
206     /**
207      * Sets the created date.
208      *
209      * @param createdDate the new created date
210      */
211     public void setCreatedDate(Date createdDate) {
212         this.createdDate = createdDate;
213     }
214
215     /**
216      * Gets the modified date.
217      *
218      * @return the modified date
219      */
220     public Date getModifiedDate() {
221         return modifiedDate;
222     }
223
224     /**
225      * Sets the modified date.
226      *
227      * @param modifiedDate the new modified date
228      */
229     public void setModifiedDate(Date modifiedDate) {
230         this.modifiedDate = modifiedDate;
231     }
232
233 }