/** * Most of the code in the Qalingo project is copyrighted Hoteia and licensed * under the Apache License Version 2.0 (release version 0.8.0) * http://www.apache.org/licenses/LICENSE-2.0 * * Copyright (c) Hoteia, 2012-2014 * http://www.hoteia.com - http://twitter.com/hoteia - contact@hoteia.com * */ package org.hoteia.qalingo.core.domain; 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 org.hoteia.qalingo.core.domain.impl.DomainEntity; @Entity @Table(name="TECO_RETAILER_LINK") public class RetailerLink extends AbstractEntity<RetailerLink> implements DomainEntity { /** * Generated UID */ private static final long serialVersionUID = 1424510895043858148L; @Id @GeneratedValue(strategy = GenerationType.AUTO) @Column(name="ID", nullable=false) private Long id; @Column(name="LINK") private String link; @Column(name="TYPE") private String type; public RetailerLink() { } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getLink() { return link; } public void setLink(String link) { this.link = link; } public String getType() { return type; } public void setType(String type) { this.type = type; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((id == null) ? 0 : id.hashCode()); result = prime * result + ((type == null) ? 0 : type.hashCode()); return result; } @Override public boolean equals(Object sourceObj) { Object obj = deproxy(sourceObj); if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; RetailerLink other = (RetailerLink) obj; if (id == null) { if (other.id != null) return false; } else if (!id.equals(other.id)) return false; if (type == null) { if (other.type != null) return false; } else if (!type.equals(other.type)) return false; return true; } @Override public String toString() { return "RetailerLink [id=" + id + ", link=" + link + ", type=" + type + "]"; } }