2 * ============LICENSE_START=======================================================
3 * feature-active-standby-management
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.policy.drools.activestandby;
23 import java.io.Serializable;
24 import java.util.Date;
26 import javax.persistence.Column;
27 import javax.persistence.Entity;
28 import javax.persistence.Id;
29 import javax.persistence.NamedQueries;
30 import javax.persistence.NamedQuery;
31 import javax.persistence.Temporal;
32 import javax.persistence.TemporalType;
34 import org.onap.policy.drools.activestandby.DroolsPdpObject;
37 //@Table(name="DroolsPdpEntity")
40 @NamedQuery(name = "DroolsPdpEntity.findAll", query = "SELECT e FROM DroolsPdpEntity e "),
41 @NamedQuery(name = "DroolsPdpEntity.deleteAll", query = "DELETE FROM DroolsPdpEntity WHERE 1=1")
43 public class DroolsPdpEntity extends DroolsPdpObject implements Serializable {
45 private static final long serialVersionUID = 1L;
48 @Column(name = "pdpId", nullable = false)
49 private String pdpId = "-1";
51 @Column(name = "designated", nullable = false)
52 private boolean designated = false;
54 @Column(name = "priority", nullable = false)
55 private int priority = 0;
57 @Temporal(TemporalType.TIMESTAMP)
58 @Column(name = "updatedDate", nullable = false)
59 private Date updatedDate;
61 @Temporal(TemporalType.TIMESTAMP)
62 @Column(name = "designatedDate",nullable = false)
63 private Date designatedDate;
65 @Column(name = "site", nullable = true, length = 50)
71 public DroolsPdpEntity() {
72 updatedDate = new Date();
73 //When this is translated to a TimeStamp in MySQL, it assumes the date is relative
74 //to the local timezone. So, a value of Date(0) is actually Dec 31 18:00:00 CST 1969
75 //which is an invalid value for the MySql TimeStamp
76 designatedDate = new Date(864000000);
80 public String getPdpId() {
84 public void setPdpId(String pdpId) {
89 public boolean isDesignated() {
90 return this.designated;
94 public int getPriority() {
98 public void setPriority(int priority) {
99 this.priority = priority;
103 public Date getUpdatedDate() {
104 return this.updatedDate;
108 public void setDesignated(boolean isDesignated) {
109 this.designated = isDesignated;
113 public void setUpdatedDate(Date updatedDate) {
114 this.updatedDate = updatedDate;
119 public String getSiteName() {
124 public void setSiteName(String siteName) {
130 public Date getDesignatedDate() {
131 return designatedDate;
135 public void setDesignatedDate(Date designatedDate) {
136 this.designatedDate = designatedDate;
140 public boolean equals(Object obj) {
142 if (obj instanceof DroolsPdp) {
143 DroolsPdpEntity entity = (DroolsPdpEntity) obj;
144 return this.pdpId.equals(entity.getPdpId());
152 public int hashCode() {
153 final int prime = 31;
155 result = prime * result + (this.pdpId == null ? 0 : this.pdpId.hashCode());