001package fr.ifremer.adagio.core.dao.referential.taxon;
002
003/*
004 * #%L
005 * SIH-Adagio :: Core
006 * $Id: TaxonRefTaxVO.java 11871 2013-12-03 14:59:35Z tc1fbb1 $
007 * $HeadURL: https://forge.ifremer.fr/svn/sih-adagio/trunk/adagio/core/src/main/java/fr/ifremer/adagio/core/dao/referential/taxon/TaxonRefTaxVO.java $
008 * %%
009 * Copyright (C) 2012 - 2013 Ifremer
010 * %%
011 * This program is free software: you can redistribute it and/or modify
012 * it under the terms of the GNU Affero General Public License as published by
013 * the Free Software Foundation, either version 3 of the License, or
014 * (at your option) any later version.
015 * 
016 * This program is distributed in the hope that it will be useful,
017 * but WITHOUT ANY WARRANTY; without even the implied warranty of
018 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
019 * GNU General Public License for more details.
020 * 
021 * You should have received a copy of the GNU Affero General Public License
022 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
023 * #L%
024 */
025
026import fr.ifremer.adagio.core.dao.referential.StatusCode;
027
028import java.io.Serializable;
029
030public class TaxonRefVO implements Serializable {
031    private static final long serialVersionUID = 3947332082602703963L;
032
033    private Integer taxonNameId;
034
035    private String name;
036
037    private String externalCode;
038
039    private Integer referenceTaxonId;
040
041    private Boolean isReference;
042
043    private StatusCode status;
044
045    public Boolean getIsReference() {
046        return isReference;
047    }
048
049    public void setIsReference(Boolean isReference) {
050        this.isReference = isReference;
051    }
052
053    public Integer getTaxonNameId() {
054        return taxonNameId;
055    }
056
057    public void setTaxonNameId(Integer taxonNameId) {
058        this.taxonNameId = taxonNameId;
059    }
060
061    public String getName() {
062        return name;
063    }
064
065    public void setName(String name) {
066        this.name = name;
067    }
068
069    public String getExternalCode() {
070        return externalCode;
071    }
072
073    public void setExternalCode(String externalCode) {
074        this.externalCode = externalCode;
075    }
076
077    public Integer getReferenceTaxonId() {
078        return referenceTaxonId;
079    }
080
081    public void setReferenceTaxonId(Integer referenceTaxonId) {
082        this.referenceTaxonId = referenceTaxonId;
083    }
084
085    public StatusCode getStatus() {
086        return status;
087    }
088
089    public void setStatus(StatusCode status) {
090        this.status = status;
091    }
092}