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.Getter;
44 import lombok.Setter;
45
46 // @formatter:off
47 @Entity
48 @Table(name = "ActionPolicyDict")
49 @NamedQueries(
50     {
51         @NamedQuery(name = "ActionPolicyDict.findAll", query = "SELECT e FROM ActionPolicyDict e")
52     }
53 )
54 @Getter
55 @Setter
56 //@formatter:on
57 public class ActionPolicyDict implements Serializable {
58     private static final long serialVersionUID = 1L;
59     @Id
60     @GeneratedValue(strategy = GenerationType.AUTO)
61     @Column(name = "id")
62     private int id;
63
64     @Column(name = "ATTRIBUTE_NAME", nullable = false)
65     @OrderBy("asc")
66     private String attributeName;
67
68     @Column(name = "Type", nullable = false)
69     @OrderBy("asc")
70     private String type;
71
72     @Column(name = "URL", nullable = false)
73     @OrderBy("asc")
74     private String url;
75
76     @Column(name = "Method", nullable = false)
77     @OrderBy("asc")
78     private String method;
79
80     @Column(name = "Headers", nullable = true)
81     @OrderBy("asc")
82     private String header;
83
84     @Column(name = "Body", nullable = true)
85     @OrderBy("asc")
86     private String body;
87
88     @Temporal(TemporalType.TIMESTAMP)
89     @Column(name = "created_date", updatable = false)
90     private Date createdDate;
91
92     @Column(name = "description", nullable = true, length = 2048)
93     private String description;
94
95     @Temporal(TemporalType.TIMESTAMP)
96     @Column(name = "modified_date", nullable = false)
97     private Date modifiedDate;
98
99     @ManyToOne(optional = false)
100     @JoinColumn(name = "created_by")
101     private UserInfo userCreatedBy;
102
103     @ManyToOne(optional = false)
104     @JoinColumn(name = "modified_by")
105     private UserInfo userModifiedBy;
106
107     /**
108      * Called before an instance is persisted.
109      */
110     @PrePersist
111     public void prePersist() {
112         Date date = new Date();
113         this.createdDate = date;
114         this.modifiedDate = date;
115     }
116
117     /**
118      * Called before an instance is updated.
119      */
120     @PreUpdate
121     public void preUpdate() {
122         this.modifiedDate = new Date();
123     }
124 }