/* * 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 TaxonIndicatorComponentPartDTO extends GenericDTO{ private Long taxonId; private Long indicatorId; private Long componentPartId; /** * @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 componentPartId */ public Long getComponentPartId() { return componentPartId; } /** * @param componentPartId the componentPartId to set */ public void setComponentPartId(Long componentPartId) { this.componentPartId = componentPartId; } }