/* * 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 TaxonCountryDTO extends GenericDTO{ private Long taxonId; private Long countryId; private String description; private boolean selected; private String countryName; /** * @return the taxonId */ public Long getTaxonId() { return taxonId; } /** * @param taxonId the taxonId to set */ public void setTaxonId(Long taxonId) { this.taxonId = taxonId; } /** * @return the countryId */ public Long getCountryId() { return countryId; } /** * @param countryId the countryId to set */ public void setCountryId(Long countryId) { this.countryId = countryId; } /** * @return the description */ public String getDescription() { return description; } /** * @param description the description to set */ public void setDescription(String description) { this.description = description; } /** * @return the selected */ public boolean isSelected() { return selected; } /** * @param selected the selected to set */ public void setSelected(boolean selected) { this.selected = selected; } /** * @return the countryName */ public String getCountryName() { return countryName; } /** * @param countryName the countryName to set */ public void setCountryName(String countryName) { this.countryName = countryName; } }