cd2ea591d68d9ed9a02849620cb524b006572fab
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / ClosedLoopD2Services.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-REST
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.rest.jpa;
22 /*
23  *
24  */
25 import java.io.Serializable;
26 import java.util.Date;
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
42
43 @Entity
44 @Table(name = "ClosedLoopD2Services")
45 @NamedQuery(name="ClosedLoopD2Services.findAll", query="SELECT c FROM ClosedLoopD2Services c ")
46 public class ClosedLoopD2Services implements Serializable{
47     private static final long serialVersionUID = 1L;
48
49     @Id
50     @Column(name ="id")
51     @GeneratedValue(strategy = GenerationType.AUTO)
52     private int id;
53
54     @Column(name="service_Name", nullable=false, unique=true)
55     @OrderBy("asc")
56     private String serviceName;
57
58     @Column(name="description", nullable=true, length=2048)
59     private String description;
60
61     @Temporal(TemporalType.TIMESTAMP)
62     @Column(name="created_date", updatable=false)
63     private Date createdDate;
64
65     @Temporal(TemporalType.TIMESTAMP)
66     @Column(name="modified_date", nullable=false)
67     private Date modifiedDate;
68
69     @ManyToOne(optional = false)
70     @JoinColumn(name="created_by")
71     private UserInfo userCreatedBy;
72
73     @ManyToOne(optional = false)
74     @JoinColumn(name="modified_by")
75     private UserInfo userModifiedBy;
76
77     public ClosedLoopD2Services() {
78         this.setModifiedDate(new Date());
79     }
80
81
82     public UserInfo getUserCreatedBy() {
83         return userCreatedBy;
84     }
85
86     public void setUserCreatedBy(UserInfo userCreatedBy) {
87         this.userCreatedBy = userCreatedBy;
88     }
89
90     public UserInfo getUserModifiedBy() {
91         return userModifiedBy;
92     }
93
94     public void setUserModifiedBy(UserInfo userModifiedBy) {
95         this.userModifiedBy = userModifiedBy;
96     }
97
98     @PrePersist
99     public void prePersist() {
100         Date date = new Date();
101         this.createdDate = date;
102         this.modifiedDate = date;
103     }
104
105     @PreUpdate
106     public void preUpdate() {
107         this.modifiedDate = new Date();
108     }
109
110     public int getId() {
111         return id;
112     }
113
114     public void setId(int id) {
115         this.id = id;
116     }
117
118     public String getServiceName() {
119         return serviceName;
120     }
121
122     public void setServiceName(String serviceName) {
123         this.serviceName = serviceName;
124     }
125
126     public String getDescription() {
127         return description;
128     }
129
130     public void setDescription(String description) {
131         this.description = description;
132     }
133
134     public Date getCreatedDate() {
135         return createdDate;
136     }
137
138     public void setCreatedDate(Date createdDate) {
139         this.createdDate = createdDate;
140     }
141
142     public Date getModifiedDate() {
143         return modifiedDate;
144     }
145
146     public void setModifiedDate(Date modifiedDate) {
147         this.modifiedDate = modifiedDate;
148     }
149
150 }