Project

General

Profile

Download (819 Bytes) Statistics
| Branch: | Revision:
1
/**
2
* Copyright (C) 2009 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.pesi.out;
10

    
11
import org.apache.log4j.Logger;
12

    
13
import eu.etaxonomy.cdm.io.common.mapping.out.CdmDbExportMapping;
14

    
15
/**
16
 * @author e.-m.lee
17
 * @since 24.02.2010
18
 *
19
 */
20
public class PesiExportMapping extends CdmDbExportMapping<PesiExportState,PesiExportConfigurator, PesiTransformer> {
21
	private static final Logger logger = Logger.getLogger(PesiExportMapping.class);
22
	
23
	public PesiExportMapping(String tableName) {
24
		super(tableName);
25
	}
26

    
27
	public static Logger getLogger() {
28
		return logger;
29
	}
30
	
31
	
32
}
(8-8/14)