JUnit/SONAR/Checkstyle in ONAP-REST
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / DecisionSettings.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 import javax.persistence.Transient;
42
43 import lombok.Getter;
44 import lombok.Setter;
45
46 /**
47  * The Class DecisionSettings.
48  */
49 // @formatter:off
50 @Entity
51 @Table(name = "DecisionSettings")
52 @NamedQuery(
53     name = "DecisionSettings.findAll",
54     query = "SELECT a FROM DecisionSettings a order by  a.priority asc, a.xacmlId asc"
55 )
56 @Getter
57 @Setter
58 //@formatter:on
59 public class DecisionSettings implements Serializable {
60     private static final long serialVersionUID = 1L;
61
62     @Id
63     @GeneratedValue(strategy = GenerationType.AUTO)
64     @Column(name = "id")
65     private int id;
66
67     @Temporal(TemporalType.TIMESTAMP)
68     @Column(name = "created_date", updatable = false)
69     private Date createdDate;
70
71     @Column(name = "description", nullable = true, length = 2048)
72     private String description;
73
74     @Temporal(TemporalType.TIMESTAMP)
75     @Column(name = "modified_date", nullable = false)
76     private Date modifiedDate;
77
78     @Column(name = "PRIORITY", nullable = true)
79     @OrderBy("asc")
80     private String priority;
81
82     @Column(name = "xacml_id", unique = true, nullable = false)
83     @OrderBy("asc")
84     private String xacmlId = "urn";
85
86     // bi-directional many-to-one association to Datatype
87     @ManyToOne
88     @JoinColumn(name = "datatype")
89     private Datatype datatypeBean;
90
91     @Transient
92     private String issuer = null;
93
94     @Transient
95     private boolean mustBePresent = false;
96
97     @ManyToOne(optional = false)
98     @JoinColumn(name = "created_by")
99     private UserInfo userCreatedBy;
100
101     @ManyToOne(optional = false)
102     @JoinColumn(name = "modified_by")
103     private UserInfo userModifiedBy;
104
105     /**
106      * Pre persist.
107      */
108     @PrePersist
109     public void prePersist() {
110         Date date = new Date();
111         this.createdDate = date;
112         this.modifiedDate = date;
113     }
114
115     /**
116      * Pre update.
117      */
118     @PreUpdate
119     public void preUpdate() {
120         this.modifiedDate = new Date();
121     }
122 }