View Javadoc

1   /*
2    * Created on 15.6.2005
3    *
4    * TODO To change the template for this generated file go to
5    * Window - Preferences - Java - Code Style - Code Templates
6    */
7   package net.sf.exorcist.dbe;
8   
9   /***
10   * @author Jukka Zitting
11   *
12   * TODO To change the template for this generated type comment go to
13   * Window - Preferences - Java - Code Style - Code Templates
14   */
15  public interface MigratorService {
16  
17  	/***
18  	 * Schedules an automated content migration process.
19  	 *
20  	 * @param srcEntries entries for looking up the content exporter service
21  	 * @param srcKey key for content export
22  	 * @param dstEntries entries for looking up the content importer service
23  	 * @param dstKey key for content import
24  	 */
25  	void scheduleMigration(
26  			String[] srcEntries, String srcKey,
27  			String[] dstEntries, String dstKey);
28  
29  }