JobDescriptor.java 424 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
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 {

	/**
12
	 * @return The supported version of the XML import or export job format.
13
	 */
14
	public String supportsJobVersion();
15
16
	
}