package open.dolphin.infomodel; import java.io.Serializable; import javax.persistence.*; /** * * @author Kazushi Minagawa, Digital Globe, Inc. */ @Entity @Table(name = "d_byte_module") public class ByteModule implements Serializable { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; @Lob private byte[] beanBytes; public Long getId() { return id; } public void setId(Long id) { this.id = id; } @Override public int hashCode() { int hash = 0; hash += (id != null ? id.hashCode() : 0); return hash; } @Override public boolean equals(Object object) { // TODO: Warning - this method won't work in the case the id fields are not set if (!(object instanceof ByteModule)) { return false; } ByteModule other = (ByteModule) object; if ((this.id == null && other.id != null) || (this.id != null && !this.id.equals(other.id))) { return false; } return true; } @Override public String toString() { return "open.dolphin.infomodel.ByteModule[id=" + id + "]"; } public byte[] getBeanBytes() { return beanBytes; } public void setBeanBytes(byte[] beanBytes) { this.beanBytes = beanBytes; } }