JUnit/SONAR/Checkstyle in ONAP-REST
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / ActionPolicyDict.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.NamedQueries;
35 import javax.persistence.NamedQuery;
36 import javax.persistence.OrderBy;
37 import javax.persistence.PrePersist;
38 import javax.persistence.PreUpdate;
39 import javax.persistence.Table;
40 import javax.persistence.Temporal;
41 import javax.persistence.TemporalType;
42
43 import lombok.Data;
44
45 // @formatter:off
46 @Entity
47 @Table(name = "ActionPolicyDict")
48 @NamedQueries(
49     {
50         @NamedQuery(name = "ActionPolicyDict.findAll", query = "SELECT e FROM ActionPolicyDict e")
51     }
52 )
53 @Data
54 //@formatter:on
55 public class ActionPolicyDict implements Serializable {
56     private static final long serialVersionUID = 1L;
57     @Id
58     @GeneratedValue(strategy = GenerationType.AUTO)
59     @Column(name = "id")
60     private int id;
61
62     @Column(name = "ATTRIBUTE_NAME", nullable = false)
63     @OrderBy("asc")
64     private String attributeName;
65
66     @Column(name = "Type", nullable = false)
67     @OrderBy("asc")
68     private String type;
69
70     @Column(name = "URL", nullable = false)
71     @OrderBy("asc")
72     private String url;
73
74     @Column(name = "Method", nullable = false)
75     @OrderBy("asc")
76     private String method;
77
78     @Column(name = "Headers", nullable = true)
79     @OrderBy("asc")
80     private String header;
81
82     @Column(name = "Body", nullable = true)
83     @OrderBy("asc")
84     private String body;
85
86     @Temporal(TemporalType.TIMESTAMP)
87     @Column(name = "created_date", updatable = false)
88     private Date createdDate;
89
90     @Column(name = "description", nullable = true, length = 2048)
91     private String description;
92
93     @Temporal(TemporalType.TIMESTAMP)
94     @Column(name = "modified_date", nullable = false)
95     private Date modifiedDate;
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      * Called before an instance is persisted.
107      */
108     @PrePersist
109     public void prePersist() {
110         Date date = new Date();
111         this.createdDate = date;
112         this.modifiedDate = date;
113     }
114
115     /**
116      * Called before an instance is updated.
117      */
118     @PreUpdate
119     public void preUpdate() {
120         this.modifiedDate = new Date();
121     }
122 }