Interface JobAcquisitionXml
-
- All Known Implementing Classes:
JobAcquisitionXmlImpl
public interface JobAcquisitionXml
Java API to the JobAcquisition deployment metadata
- Author:
- Daniel Meyer
-
-
Field Summary
Fields Modifier and Type Field Description static String
LOCK_TIME_IN_MILLIS
static String
MAX_JOBS_PER_ACQUISITION
static String
WAIT_TIME_IN_MILLIS
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getJobExecutorClassName()
String
getName()
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
-
-