Project

General

Profile

Download (597 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
import eu.etaxonomy.cdm.api.application.ICdmRepository;
10

    
11
/**
12
 * Interface for all import classes.
13
 *
14
 * @author a.babadshanjan
15
 * @since 17.11.2008
16
 */
17
public interface ICdmImport<CONFIG extends IImportConfigurator, STATE extends ImportStateBase>
18
            extends ICdmIO<STATE>{
19

    
20

    
21
    public byte[] getByteArray();
22

    
23
    public abstract void invoke(STATE state);
24

    
25
    public void setRepository(ICdmRepository repository);
26

    
27
}
(27-27/65)