Project

General

Profile

Download (916 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

    
10
package eu.etaxonomy.cdm.io.jaxb;
11

    
12
import java.io.File;
13

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

    
16
import eu.etaxonomy.cdm.io.common.ExportStateBase;
17
import eu.etaxonomy.cdm.io.common.mapping.out.IExportTransformer;
18

    
19
/**
20
 * @author a.mueller
21
 * @since 11.05.2009
22
 */
23
public class JaxbExportState
24
        extends ExportStateBase<JaxbExportConfigurator, IExportTransformer, File>{
25

    
26
    @SuppressWarnings("unused")
27
	private static final Logger logger = LogManager.getLogger(JaxbExportState.class);
28

    
29

    
30
	public JaxbExportState(JaxbExportConfigurator config) {
31
		super(config);
32
	}
33

    
34
}
(11-11/17)