Project

General

Profile

Download (960 Bytes) Statistics
| Branch: | 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.redlist.bfnXml.out;
11

    
12
import org.apache.log4j.Logger;
13

    
14
import eu.etaxonomy.cdm.io.common.CdmExportBase;
15
import eu.etaxonomy.cdm.io.common.mapping.out.IExportTransformer;
16
import eu.etaxonomy.cdm.model.common.CdmBase;
17

    
18
/**
19
 *
20
 * @author pplitzner
21
 * @date May 3, 2016
22
 *
23
 * @param <T>
24
 */
25
public abstract class BfnXmlExportBase<T extends CdmBase> extends CdmExportBase<BfnXmlExportConfigurator, BfnXmlExportState, IExportTransformer> {
26

    
27
    private static final long serialVersionUID = 1115122553345412881L;
28

    
29
    private static final Logger logger = Logger.getLogger(BfnXmlExportBase.class);
30

    
31
	public BfnXmlExportBase() {
32
		super();
33
	}
34
}
(1-1/5)