JobDescriptor.java 545 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package eu.simstadt.nf;

/**
 * Every instance of this class describes an export or import job for the novaFACTORY. Instances of JobBuilder
 * take JobDescriptions and build XML export and import job files out of it.
 * 
 * @author Marcel Bruse
 */
public interface JobDescriptor {

	/**
	 * @return The supported version of the XML export job format.
	 */
	public String supportsExportJobVersion();
	
	/** 
	 * @return The supported version of the XML import job format.
	 */
	public String supportsImportJobVersion();
	
}