ref #9114 add URI Wrapper and replace all java.net.URI occurrences by the wrapper...
[cdmlib.git] / cdmlib-io / src / main / java / eu / etaxonomy / cdm / io / taxonx / TaxonXImportState.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.taxonx;
11
12 import org.apache.log4j.Logger;
13
14 import eu.etaxonomy.cdm.io.common.CdmImportBase;
15 import eu.etaxonomy.cdm.io.common.ImportStateBase;
16 import eu.etaxonomy.cdm.model.reference.Reference;
17
18 /**
19 * @author a.mueller
20 * @since 11.05.2009
21 * @version 1.0
22 */
23 public class TaxonXImportState extends ImportStateBase<TaxonXImportConfigurator, CdmImportBase>{
24 @SuppressWarnings("unused")
25 private static final Logger logger = Logger.getLogger(TaxonXImportState.class);
26
27 private Reference modsReference;
28
29 /**
30 * @return the modsReference
31 */
32 public Reference getModsReference() {
33 return modsReference;
34 }
35
36 /**
37 * @param modsReference the modsReference to set
38 */
39 public void setModsReference(Reference modsReference) {
40 this.modsReference = modsReference;
41 }
42
43 public TaxonXImportState(TaxonXImportConfigurator config) {
44 super(config);
45 }
46
47
48 // /* (non-Javadoc)
49 // * @see eu.etaxonomy.cdm.io.common.IoStateBase#initialize(eu.etaxonomy.cdm.io.common.IoConfiguratorBase)
50 // */
51 // @Override
52 // public void initialize(TaxonXImportConfigurator config) {
53 //
54 // }
55
56 }