Project

General

Profile

Download (478 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2008 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*/
6

    
7
package eu.etaxonomy.cdm.io.common;
8

    
9
/**
10
 * @author a.babadshanjan
11
 * @since 17.11.2008
12
 */
13
public interface ICdmExport<CONFIG extends IExportConfigurator, STATE extends ExportStateBase>
14
            extends ICdmIO<STATE>{
15

    
16

    
17
	public ExportDataWrapper createExportData();
18

    
19
	public byte[] getByteArray();
20

    
21
	public abstract void invoke(STATE state);
22

    
23
}
(24-24/65)