Uses of Interface
org.springframework.batch.core.Job

Packages that use Job
org.springframework.batch.core.configuration Interfaces for registration and location of job configurations. 
org.springframework.batch.core.configuration.support Specific implementations of configuration concerns. 
org.springframework.batch.core.job Specific implementations of job concerns. 
org.springframework.batch.core.job.flow   
org.springframework.batch.core.launch Interfaces and simple implementations of launch concerns. 
org.springframework.batch.core.launch.support Support classes for use in bootstrap and launch implementations or configurations. 
 

Uses of Job in org.springframework.batch.core.configuration
 

Methods in org.springframework.batch.core.configuration that return Job
 Job JobFactory.createJob()
           
 Job JobLocator.getJob(String name)
          Locates a Job at runtime.
 

Uses of Job in org.springframework.batch.core.configuration.support
 

Methods in org.springframework.batch.core.configuration.support that return Job
 Job ApplicationContextJobFactory.createJob()
          Create an ApplicationContext from the factory provided and pull out a bean with the name given during initialization.
 Job ReferenceJobFactory.createJob()
          Just return the instance passed in on initialization.
 Job MapJobRegistry.getJob(String name)
           
 Job ClassPathXmlJobRegistry.getJob(String name)
           
 

Constructors in org.springframework.batch.core.configuration.support with parameters of type Job
ReferenceJobFactory(Job job)
           
 

Uses of Job in org.springframework.batch.core.job
 

Classes in org.springframework.batch.core.job that implement Job
 class AbstractJob
          Abstract implementation of the Job interface.
 class SimpleJob
          Simple implementation of Job interface providing the ability to run a JobExecution.
 

Uses of Job in org.springframework.batch.core.job.flow
 

Classes in org.springframework.batch.core.job.flow that implement Job
 class FlowJob
          Implementation of the Job interface that allows for complex flows of steps, rather than requiring sequential execution.
 

Uses of Job in org.springframework.batch.core.launch
 

Methods in org.springframework.batch.core.launch with parameters of type Job
 JobExecution JobLauncher.run(Job job, JobParameters jobParameters)
          Start a job execution for the given Job and JobParameters .
 

Uses of Job in org.springframework.batch.core.launch.support
 

Methods in org.springframework.batch.core.launch.support with parameters of type Job
 JobExecution SimpleJobLauncher.run(Job job, JobParameters jobParameters)
          Run the provided job with the given JobParameters.
 



Copyright © 2009 SpringSource. All Rights Reserved.