Interface JobAcquisitionXml
- 
- All Known Implementing Classes:
 JobAcquisitionXmlImpl
public interface JobAcquisitionXmlJava API to the JobAcquisition deployment metadata
- Author:
 - Daniel Meyer
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description static StringLOCK_TIME_IN_MILLISstatic StringMAX_JOBS_PER_ACQUISITIONstatic StringWAIT_TIME_IN_MILLIS 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetJobExecutorClassName()StringgetName()Map<String,String>getProperties() 
 - 
 
- 
- 
Field Detail
- 
LOCK_TIME_IN_MILLIS
static final String LOCK_TIME_IN_MILLIS
- See Also:
 - Constant Field Values
 
 
- 
WAIT_TIME_IN_MILLIS
static final String WAIT_TIME_IN_MILLIS
- See Also:
 - Constant Field Values
 
 
- 
MAX_JOBS_PER_ACQUISITION
static final String MAX_JOBS_PER_ACQUISITION
- See Also:
 - Constant Field Values
 
 
 - 
 
- 
Method Detail
- 
getName
String getName()
- Returns:
 - the name of the JobExecutor.
 
 
- 
getJobExecutorClassName
String getJobExecutorClassName()
- Returns:
 - the fully qualified classname of the JobExecutor to be used.
 
 
- 
getProperties
Map<String,String> getProperties()
- Returns:
 - a set of properties to configure the Job Executor. The properties are mapped to bean properties of the JobExecutor class used.
 - See Also:
 LOCK_TIME_IN_MILLIS,WAIT_TIME_IN_MILLIS,MAX_JOBS_PER_ACQUISITION
 
 - 
 
 -