Project

General

Profile

Download (960 Bytes) Statistics
| Branch: | Tag: | Revision:
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
package eu.etaxonomy.cdm.io.common;
10

    
11
import javax.xml.stream.XMLEventReader;
12

    
13
import org.apache.logging.log4j.LogManager;
14
import org.apache.logging.log4j.Logger;
15

    
16
/**
17
 * @author a.mueller
18
 * @since 11.05.2009
19
 */
20
public class XmlImportState<CONFIG extends XmlImportConfiguratorBase, IO extends XmlImportBase>
21
        extends ImportStateBase<CONFIG, IO> {
22

    
23
    @SuppressWarnings("unused")
24
	private static final Logger logger = LogManager.getLogger(XmlImportState.class);
25

    
26
	private XMLEventReader reader;
27

    
28
	public XmlImportState(CONFIG config) {
29
		super(config);
30
	}
31

    
32
	public XMLEventReader getReader() {
33
		return reader;
34
	}
35
	public void setReader(XMLEventReader reader) {
36
		this.reader = reader;
37
	}
38
}
(64-64/65)