Project

General

Profile

Download (1.22 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2018 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.cdm.io.excel.taxa;
10

    
11
import eu.etaxonomy.cdm.common.URI;
12
import eu.etaxonomy.cdm.database.ICdmDataSource;
13
import eu.etaxonomy.cdm.io.common.ImportStateBase;
14
import eu.etaxonomy.cdm.io.excel.common.ExcelImportConfiguratorBase;
15

    
16
/**
17
 * @author k.luther
18
 * @since 21.02.2018
19
 */
20
public class TaxonListImportConfigurator extends ExcelImportConfiguratorBase {
21

    
22
    private static final long serialVersionUID = 866658153336029112L;
23

    
24
    protected TaxonListImportConfigurator(URI uri, ICdmDataSource destination) {
25
        super(uri, destination);
26

    
27
    }
28
    public static TaxonListImportConfigurator NewInstance(URI uri, ICdmDataSource destination){
29
        return new TaxonListImportConfigurator(uri, destination);
30
    }
31

    
32
    @Override
33
    public <STATE extends ImportStateBase> STATE getNewState() {
34
        // TODO Auto-generated method stub
35
        return null;
36
    }
37

    
38
    @Override
39
    protected void makeIoClassList() {
40
        // TODO Auto-generated method stub
41
    }
42
}
(8-8/8)