/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package org.inbio.ara.dto.taxonomy; import org.inbio.ara.dto.GenericDTO; /** * * @author gsulca */ public class TaxonIndicatorCountryDTO extends GenericDTO{ private Long taxonId; private Long indicatorId; private Long countryId; /** * @return the taxonId */ public Long getTaxonId() { return taxonId; } /** * @param taxonId the taxonId to set */ public void setTaxonId(Long taxonId) { this.taxonId = taxonId; } /** * @return the indicatorId */ public Long getIndicatorId() { return indicatorId; } /** * @param indicatorId the indicatorId to set */ public void setIndicatorId(Long indicatorId) { this.indicatorId = indicatorId; } /** * @return the countryId */ public Long getCountryId() { return countryId; } /** * @param countryId the countryId to set */ public void setCountryId(Long countryId) { this.countryId = countryId; } }