Interface JobAcquisitionXml
- 
- All Known Implementing Classes:
- JobAcquisitionXmlImpl
 
 public interface JobAcquisitionXmlJava API to the JobAcquisition deployment metadata - Author:
- Daniel Meyer
 
- 
- 
Field SummaryFields Modifier and Type Field Description static java.lang.StringLOCK_TIME_IN_MILLISstatic java.lang.StringMAX_JOBS_PER_ACQUISITIONstatic java.lang.StringWAIT_TIME_IN_MILLIS
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetJobExecutorClassName()java.lang.StringgetName()java.util.Map<java.lang.String,java.lang.String>getProperties()
 
- 
- 
- 
Field Detail- 
LOCK_TIME_IN_MILLISstatic final java.lang.String LOCK_TIME_IN_MILLIS - See Also:
- Constant Field Values
 
 - 
WAIT_TIME_IN_MILLISstatic final java.lang.String WAIT_TIME_IN_MILLIS - See Also:
- Constant Field Values
 
 - 
MAX_JOBS_PER_ACQUISITIONstatic final java.lang.String MAX_JOBS_PER_ACQUISITION - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
getNamejava.lang.String getName() - Returns:
- the name of the JobExecutor.
 
 - 
getJobExecutorClassNamejava.lang.String getJobExecutorClassName() - Returns:
- the fully qualified classname of the JobExecutor to be used.
 
 - 
getPropertiesjava.util.Map<java.lang.String,java.lang.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
 
 
- 
 
-