/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ //$Id: Broken.java 4599 2004-09-26 05:18:27Z oneovthafew $ package org.hibernate.test.legacy; import java.io.Serializable; import java.util.Date; /** * @author Gavin King */ public class Broken implements Serializable { private Long id; private String otherId; private Date timestamp; public Long getId() { return id; } public Date getTimestamp() { return timestamp; } public void setId(Long long1) { id = long1; } public void setTimestamp(Date date) { timestamp = date; } public String getOtherId() { return otherId; } public void setOtherId(String string) { otherId = string; } public boolean equals(Object other) { if ( !(other instanceof Broken) ) return false; Broken that = (Broken) other; return this.id.equals(that.id) && this.otherId.equals(that.otherId); } public int hashCode() { return 1; } }