| java.lang.Object org.kuali.kfs.batch.JobDescriptor
JobDescriptor | public class JobDescriptor implements BeanNameAware(Code) | | |
JobDescriptor | public JobDescriptor()(Code) | | |
getDependencies | public Map<String, String> getDependencies()(Code) | | Gets the dependencies attribute.
Returns the dependencies. |
getJobDetail | public JobDetail getJobDetail()(Code) | | Constructs a non-volatile, durable, non-recoverable JobDetail w/ org.kuali.kfs.batch.Job as the job class and the specified
name and group from this instance. Also adds status=Pending to the JobDataMap, if this is a scheduled job.
the org.quartz.JobDetail corresponding to this instance |
getSteps | public List<Step> getSteps()(Code) | | Gets the steps attribute.
Returns the steps. |
isDurable | public boolean isDurable()(Code) | | |
setBeanName | public void setBeanName(String name)(Code) | | See Also: org.springframework.beans.factory.BeanNameAware.setBeanName(java.lang.String) |
setDependencies | public void setDependencies(Map<String, String> dependencies)(Code) | | Sets the dependencies attribute value.
Parameters: dependencies - The dependencies to set. |
setDurable | public void setDurable(boolean durable)(Code) | | |
setGroup | public void setGroup(String group)(Code) | | Sets the group attribute value.
Parameters: group - The group to set. |
setSchedulerService | public void setSchedulerService(SchedulerService schedulerService)(Code) | | Sets the schedulerService attribute value.
Parameters: schedulerService - The schedulerService to set. |
setSteps | public void setSteps(List<Step> steps)(Code) | | Sets the steps attribute value.
Parameters: steps - The steps to set. |
|
|