bffdce09441a024ff284e9e6ecc57e73255afcfb
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / VNFType.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-REST
4  * ================================================================================
5  * Copyright (C) 2017-2018 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 import java.io.Serializable;
24 import java.util.Date;
25
26 import javax.persistence.Column;
27 import javax.persistence.Entity;
28 import javax.persistence.GeneratedValue;
29 import javax.persistence.GenerationType;
30 import javax.persistence.Id;
31 import javax.persistence.JoinColumn;
32 import javax.persistence.ManyToOne;
33 import javax.persistence.NamedQuery;
34 import javax.persistence.OrderBy;
35 import javax.persistence.PrePersist;
36 import javax.persistence.PreUpdate;
37 import javax.persistence.Table;
38 import javax.persistence.Temporal;
39 import javax.persistence.TemporalType;
40
41
42
43 @Entity
44 @Table(name="VNFType")
45 @NamedQuery(name="VNFType.findAll", query="SELECT v FROM VNFType v ")
46 public class VNFType implements Serializable  {
47         private static final long serialVersionUID = 1L;
48
49         @Id
50         @GeneratedValue(strategy = GenerationType.AUTO)
51         @Column(name="id")
52         private int id;
53         
54         @Column(name="vnf_type", nullable=false, unique=true)
55         @OrderBy("asc")
56         private String vnftype;
57
58         @Temporal(TemporalType.TIMESTAMP)
59         @Column(name="created_date", updatable=false)
60         private Date createdDate;
61
62         @Column(name="description", nullable=true, length=2048)
63         private String description;
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 UserInfo getUserCreatedBy() {
78                 return userCreatedBy;
79         }
80
81         public void setUserCreatedBy(UserInfo userCreatedBy) {
82                 this.userCreatedBy = userCreatedBy;
83         }
84
85         public UserInfo getUserModifiedBy() {
86                 return userModifiedBy;
87         }
88
89         public void setUserModifiedBy(UserInfo userModifiedBy) {
90                 this.userModifiedBy = userModifiedBy;
91         }
92         
93         public String getVnftype() {
94                 return vnftype;
95         }
96
97         public void setVnftype(String vnftype) {
98                 this.vnftype = vnftype;
99         }       
100
101         @PrePersist
102         public void     prePersist() {
103                 Date date = new Date();
104                 this.createdDate = date;
105                 this.modifiedDate = date;
106         }
107
108         @PreUpdate
109         public void preUpdate() {
110                 this.modifiedDate = new Date();
111         }
112         
113         public int getId() {
114                 return this.id;
115         }
116
117         public void setId(int id) {
118                 this.id = id;
119         }
120
121         public Date getCreatedDate() {
122                 return this.createdDate;
123         }
124
125         public void setCreatedDate(Date createdDate) {
126                 this.createdDate = createdDate;
127         }
128
129         public String getDescription() {
130                 return this.description;
131         }
132
133         public void setDescription(String description) {
134                 this.description = description;
135         }
136
137         public Date getModifiedDate() {
138                 return this.modifiedDate;
139         }
140
141         public void setModifiedDate(Date modifiedDate) {
142                 this.modifiedDate = modifiedDate;
143         }
144 }