/* * 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.dto.taxonomy; import org.inbio.ara.dto.GenericDTO; /** * * @author esmata */ public class TaxonDescriptionInstitutionDTO extends GenericDTO{ private Long taxonId; private Long taxonDescriptionSequence; private Long institutionId; private Long sequence; private String description; public TaxonDescriptionInstitutionDTO(){} /** * @return the taxonId */ public Long getTaxonId() { return taxonId; } /** * @param taxonId the taxonId to set */ public void setTaxonId(Long taxonId) { this.taxonId = taxonId; } /** * @return the taxonDescriptionSequence */ public Long getTaxonDescriptionSequence() { return taxonDescriptionSequence; } /** * @param taxonDescriptionSequence the taxonDescriptionSequence to set */ public void setTaxonDescriptionSequence(Long taxonDescriptionSequence) { this.taxonDescriptionSequence = taxonDescriptionSequence; } /** * @return the institutionId */ public Long getInstitutionId() { return institutionId; } /** * @param institutionId the institutionId to set */ public void setInstitutionId(Long institutionId) { this.institutionId = institutionId; } /** * @return the sequence */ public Long getSequence() { return sequence; } /** * @param sequence the sequence to set */ public void setSequence(Long sequence) { this.sequence = sequence; } /** * @return the description */ public String getDescription() { return description; } /** * @param description the description to set */ public void setDescription(String description) { this.description = description; } }