/** * Copyright (c) Istituto Nazionale di Fisica Nucleare (INFN). 2006-2016 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.glite.security.voms.admin.persistence.model; import java.util.Date; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; import javax.persistence.Temporal; import javax.persistence.TemporalType; @Entity @Table(name = "periodic_notifications") public class PeriodicNotifications { @Id @GeneratedValue(strategy=GenerationType.IDENTITY) private Long id; @Column(nullable = false, unique = true) private String notificationType; @Column(nullable = false) @Temporal(TemporalType.TIMESTAMP) private Date lastNotificationTime; public PeriodicNotifications() { } /** * @return the id */ public Long getId() { return id; } /** * @param id * the id to set */ public void setId(Long id) { this.id = id; } /** * @return the notificationType */ public String getNotificationType() { return notificationType; } /** * @param notificationType * the notificationType to set */ public void setNotificationType(String notificationType) { this.notificationType = notificationType; } /** * @return the lastNotificationTime */ public Date getLastNotificationTime() { return lastNotificationTime; } /** * @param lastNotificationTime * the lastNotificationTime to set */ public void setLastNotificationTime(Date lastNotificationTime) { this.lastNotificationTime = lastNotificationTime; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((notificationType == null) ? 0 : notificationType.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; PeriodicNotifications other = (PeriodicNotifications) obj; if (notificationType == null) { if (other.notificationType != null) return false; } else if (!notificationType.equals(other.notificationType)) return false; return true; } @Override public String toString() { return "PeriodicNotifications [id=" + id + ", notificationType=" + notificationType + ", lastNotificationTime=" + lastNotificationTime + "]"; } }