JUnit/SONAR/Checkstyle in ONAP-REST
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / BrmsParamTemplate.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.Lob;
34 import javax.persistence.ManyToOne;
35 import javax.persistence.NamedQuery;
36 import javax.persistence.OrderBy;
37 import javax.persistence.PrePersist;
38 import javax.persistence.Table;
39 import javax.persistence.Temporal;
40 import javax.persistence.TemporalType;
41
42 /*
43  * JPA for the BRMS Param Template.
44  *
45  * @version: 0.1
46  */
47
48 @Entity
49 @Table(name = "BrmsParamTemplate")
50 @NamedQuery(name = "BrmsParamTemplate.findAll", query = "SELECT b FROM BrmsParamTemplate b ")
51 public class BrmsParamTemplate implements Serializable {
52     private static final long serialVersionUID = 1L;
53
54     @Id
55     @GeneratedValue(strategy = GenerationType.AUTO)
56     @Column(name = "id")
57     private int id;
58
59     @Column(name = "param_template_name", nullable = false, unique = true)
60     @OrderBy("asc")
61     private String ruleName;
62
63     @Lob
64     @Column(name = "rule", nullable = false)
65     private String rule;
66
67     @Column(name = "description", nullable = true, length = 2048)
68     private String description;
69
70     @Temporal(TemporalType.TIMESTAMP)
71     @Column(name = "created_date", updatable = false)
72     private Date createdDate;
73
74     @ManyToOne(optional = false)
75     @JoinColumn(name = "created_by")
76     private UserInfo userCreatedBy;
77
78     public UserInfo getUserCreatedBy() {
79         return userCreatedBy;
80     }
81
82     public void setUserCreatedBy(UserInfo userCreatedBy) {
83         this.userCreatedBy = userCreatedBy;
84     }
85
86     @PrePersist
87     public void prePersist() {
88         Date date = new Date();
89         this.createdDate = date;
90     }
91
92     public int getId() {
93         return this.id;
94     }
95
96     public void setId(int id) {
97         this.id = id;
98     }
99
100     public Date getCreatedDate() {
101         return this.createdDate;
102     }
103
104     public void setCreatedDate(Date createdDate) {
105         this.createdDate = createdDate;
106     }
107
108     public String getDescription() {
109         return this.description;
110     }
111
112     public void setDescription(String description) {
113         this.description = description;
114     }
115
116     public String getRule() {
117         return this.rule;
118     }
119
120     public void setRule(String rule) {
121         this.rule = rule;
122     }
123
124     public String getRuleName() {
125         return this.ruleName;
126     }
127
128     public void setRuleName(String ruleName) {
129         this.ruleName = ruleName;
130     }
131 }