Project

General

Profile

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

    
11
package eu.etaxonomy.cdm.io.taxonx;
12

    
13
import org.apache.log4j.Logger;
14

    
15
import eu.etaxonomy.cdm.io.common.CdmImportBase;
16
import eu.etaxonomy.cdm.io.common.ImportStateBase;
17
import eu.etaxonomy.cdm.model.reference.Reference;
18

    
19
/**
20
 * @author a.mueller
21
 * @created 11.05.2009
22
 * @version 1.0
23
 */
24
public class TaxonXImportState extends ImportStateBase<TaxonXImportConfigurator, CdmImportBase>{
25
	@SuppressWarnings("unused")
26
	private static final Logger logger = Logger.getLogger(TaxonXImportState.class);
27

    
28
	private Reference modsReference;
29

    
30
	/**
31
	 * @return the modsReference
32
	 */
33
	public Reference getModsReference() {
34
		return modsReference;
35
	}
36

    
37
	/**
38
	 * @param modsReference the modsReference to set
39
	 */
40
	public void setModsReference(Reference modsReference) {
41
		this.modsReference = modsReference;
42
	}
43

    
44
	public TaxonXImportState(TaxonXImportConfigurator config) {
45
		super(config);
46
	}
47

    
48

    
49
//	/* (non-Javadoc)
50
//	 * @see eu.etaxonomy.cdm.io.common.IoStateBase#initialize(eu.etaxonomy.cdm.io.common.IoConfiguratorBase)
51
//	 */
52
//	@Override
53
//	public void initialize(TaxonXImportConfigurator config) {
54
//
55
//	}
56

    
57
}
(4-4/7)