Unit/SONAR/Checkstyle in ONAP-REST
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / PepOptions.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 import lombok.Getter;
46 import lombok.Setter;
47
48 /**
49  * The Class PepOptions.
50  */
51 @Entity
52 @Table(name = "PepOptions")
53 @NamedQuery(name = "PepOptions.findAll", query = "Select p from PepOptions p")
54 @Getter
55 @Setter
56 public class PepOptions implements Serializable {
57     private static final long serialVersionUID = 1L;
58     @Id
59     @GeneratedValue(strategy = GenerationType.AUTO)
60     @Column(name = "Id")
61     private int id;
62
63     @Column(name = "PEP_NAME", nullable = false)
64     @OrderBy("asc")
65     private String pepName;
66
67     @Column(name = "description", nullable = true, length = 2048)
68     private String description;
69
70     @Column(name = "Actions", nullable = true)
71     @OrderBy("asc")
72     private String actions;
73
74     @Temporal(TemporalType.TIMESTAMP)
75     @Column(name = "created_date", updatable = false)
76     private Date createdDate;
77
78     @Temporal(TemporalType.TIMESTAMP)
79     @Column(name = "modified_date", nullable = false)
80     private Date modifiedDate;
81
82     @ManyToOne(optional = false)
83     @JoinColumn(name = "created_by")
84     private UserInfo userCreatedBy;
85
86     @ManyToOne(optional = false)
87     @JoinColumn(name = "modified_by")
88     private UserInfo userModifiedBy;
89
90     /**
91      * Instantiates a new PEP options.
92      */
93     public PepOptions() {
94         this.modifiedDate = new Date();
95     }
96
97     /**
98      * Pre persist.
99      */
100     @PrePersist
101     public void prePersist() {
102         Date date = new Date();
103         this.createdDate = date;
104         this.modifiedDate = date;
105     }
106
107     /**
108      * Pre update.
109      */
110     @PreUpdate
111     public void preUpdate() {
112         this.modifiedDate = new Date();
113     }
114 }