/* * Ara - Capture Species and Specimen Data * * Copyright © 2009 INBio (Instituto Nacional de Biodiversidad). * Heredia, Costa Rica. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.inbio.ara.persistence.audiences; import java.util.Calendar; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import org.inbio.ara.persistence.LogGenericEntity; /** * * @author esmata */ @Entity @Table(name = "audience") public class Audience extends LogGenericEntity { @Id @GeneratedValue(strategy=GenerationType.AUTO, generator="Audience") @SequenceGenerator(name="Audience", sequenceName="audience_seq") @Basic(optional = false) @Column(name = "audience_id") private Long audienceId; @Basic(optional = false) @Column(name = "name") private String name; @Column(name = "description") private String description; public Audience() { } public Audience(Long audienceId) { this.audienceId = audienceId; } public Audience(Long audienceId, String name, String createdBy, Calendar creationDate, String lastModificationBy, Calendar lastModificationDate) { this.audienceId = audienceId; this.name = name; this.setCreatedBy(createdBy); this.setCreationDate(creationDate); this.setLastModificationBy(lastModificationBy); this.setLastModificationDate(lastModificationDate); } public Long getAudienceId() { return audienceId; } public void setAudienceId(Long audienceId) { this.audienceId = audienceId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } @Override public int hashCode() { int hash = 0; hash += (audienceId != null ? audienceId.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 Audience)) { return false; } Audience other = (Audience) object; if ((this.audienceId == null && other.audienceId != null) || (this.audienceId != null && !this.audienceId.equals(other.audienceId))) { return false; } return true; } @Override public String toString() { return "org.inbio.ara.persistence.audiences.Audience[audienceId=" + audienceId + "]"; } }