|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| 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.builder | |
| 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.builder | |
| org.springframework.batch.core.step.job | |
| org.springframework.batch.sample.config | |
| 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(org.springframework.beans.factory.config.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.builder |
|---|
| Methods in org.springframework.batch.core.job.builder that return Job | |
|---|---|
Job |
SimpleJobBuilder.build()
|
Job |
FlowJobBuilder.build()
Build a job that executes the flow provided, normally composed of other steps. |
| Methods in org.springframework.batch.core.job.builder with parameters of type Job | |
|---|---|
protected void |
JobBuilderHelper.enhance(Job target)
|
| 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.builder |
|---|
| Methods in org.springframework.batch.core.step.builder with parameters of type Job | |
|---|---|
JobStepBuilder |
StepBuilder.job(Job job)
Create a new step builder that will execute a job. |
JobStepBuilder |
JobStepBuilder.job(Job job)
Provide a job to execute during the step. |
| 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.sample.config |
|---|
| Methods in org.springframework.batch.sample.config that return Job | |
|---|---|
Job |
RetrySampleConfiguration.retrySample()
|
| 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. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||