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. 
org.springframework.batch.core.step.job   
org.springframework.batch.test   
 

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
 

Classes in org.springframework.batch.core.configuration.support that implement Job
 class GroupAwareJob
          A Job that can optionally prepend a group name to another job's name, to make it fit a naming convention for type or origin.
 

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

Methods in org.springframework.batch.core.configuration.support that return types with arguments of type Job
 Collection<Job> JobLoader.load(ApplicationContextFactory factory)
          Load an application context and register all the jobs.
 Collection<Job> DefaultJobLoader.load(ApplicationContextFactory factory)
           
 Collection<Job> JobLoader.reload(ApplicationContextFactory factory)
          Load an application context and register all the jobs, having first unregistered them if already registered.
 Collection<Job> DefaultJobLoader.reload(ApplicationContextFactory factory)
           
 

Methods in org.springframework.batch.core.configuration.support with parameters of type Job
protected  String JobRegistryBeanPostProcessor.getGroupName(BeanDefinition beanDefinition, Job job)
          Determine a group name for the job to be registered.
 

Constructors in org.springframework.batch.core.configuration.support with parameters of type Job
GroupAwareJob(Job delegate)
          Create a new Job with the delegate and no group name.
GroupAwareJob(String groupName, Job delegate)
          Create a new Job with the given group name and delegate.
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.
 

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

Methods in org.springframework.batch.core.step.job with parameters of type Job
 JobParameters JobParametersExtractor.getJobParameters(Job job, StepExecution stepExecution)
          Extract job parameters from the step execution, for example from the execution context or other properties.
 JobParameters DefaultJobParametersExtractor.getJobParameters(Job job, StepExecution stepExecution)
           
 void JobStep.setJob(Job job)
          The Job to delegate to in this step.
 

Uses of Job in org.springframework.batch.test
 

Methods in org.springframework.batch.test that return Job
 Job JobLauncherTestUtils.getJob()
           
 

Methods in org.springframework.batch.test with parameters of type Job
 void JobLauncherTestUtils.setJob(Job job)
          The Job instance that can be manipulated (e.g. launched) in this utility.
 



Copyright © 2013 SpringSource. All Rights Reserved.