Major Update to cdmlib-3.3
[cdmlib.git] / cdmlib-io / src / main / java / eu / etaxonomy / cdm / io / specimen / SpecimenImportBase.java
1 /**
2 * Copyright (C) 2007 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
10 package eu.etaxonomy.cdm.io.specimen;
11
12
13 import org.apache.log4j.Logger;
14
15 import eu.etaxonomy.cdm.io.common.CdmImportBase;
16 import eu.etaxonomy.cdm.io.common.IImportConfigurator;
17 import eu.etaxonomy.cdm.io.common.ImportStateBase;
18
19
20 /**
21 * @author p.kelbert
22 * @created 20.10.2008
23 */
24 public abstract class SpecimenImportBase<CONFIG extends IImportConfigurator, STATE extends ImportStateBase> extends CdmImportBase<CONFIG, STATE> {
25 @SuppressWarnings("unused")
26 private static final Logger logger = Logger.getLogger(SpecimenImportBase.class);
27
28 protected abstract void doInvoke(STATE state);
29
30 }