Project

General

Profile

« Previous | Next » 

Revision 18083589

Added by Andreas Müller over 6 years ago

ref #6606 latest changes to Bogota Specimen import (specimen with no CDM taxon ID)

View differences:

app-import/src/main/java/eu/etaxonomy/cdm/io/bogota/BogotaSpecimenImportConfigurator.java
14 14
import eu.etaxonomy.cdm.database.ICdmDataSource;
15 15
import eu.etaxonomy.cdm.io.common.ImportStateBase;
16 16
import eu.etaxonomy.cdm.io.excel.common.ExcelImportConfiguratorBase;
17
import eu.etaxonomy.cdm.model.reference.Reference;
17 18

  
18 19
/**
19 20
 * @author a.mueller
......
27 28
    private int minLineNumber = 0;
28 29
    private int maxLineNumber = 1000000;
29 30

  
31
    private Reference secReference;
32
    private boolean onlyNonCdmTaxa;
33

  
30 34
    /**
31 35
     * @param source
32 36
     * @param cdmDestination
......
77 81
        this.maxLineNumber = maxLineNumber;
78 82
    }
79 83

  
84
    public Reference getSecReference() {
85
        return secReference;
86
    }
87

  
88
    public void setSecReference(Reference secReference) {
89
        this.secReference = secReference;
90
    }
91

  
92
    public boolean isOnlyNonCdmTaxa() {
93
        return onlyNonCdmTaxa;
94
    }
95

  
96
    public void setOnlyNonCdmTaxa(boolean onlyNonCdmTaxa) {
97
        this.onlyNonCdmTaxa = onlyNonCdmTaxa;
98
    }
80 99

  
81 100
}

Also available in: Unified diff