package org.hibernate.envers.test.integration.onetomany.embeddedid; import org.hibernate.envers.Audited; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import java.io.Serializable; /** * @author Lukasz Antoniak (lukasz dot antoniak at gmail dot com) */ @Entity @Audited public class Constant implements Serializable { @Id @Column(length = 3) private String id; private String name; public Constant() { } public Constant(String id, String name) { this.id = id; this.name = name; } @Override public boolean equals(Object o) { if (this == o) return true; if (!(o instanceof Constant)) return false; Constant constant = (Constant) o; if (id != null ? !id.equals(constant.id) : constant.id != null) return false; if (name != null ? !name.equals(constant.name) : constant.name != null) return false; return true; } @Override public int hashCode() { int result = id != null ? id.hashCode() : 0; result = 31 * result + (name != null ? name.hashCode() : 0); return result; } @Override public String toString() { return "Constant(id = " + id + ", name = " + name + ")"; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } }