Uses of Package
org.springframework.batch.core

Packages that use org.springframework.batch.core
org.springframework.batch.core Core domain context for Spring Batch covering jobs, steps, configuration and execution abstractions. 
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.converter Support classes for implementations of the batch APIs. 
org.springframework.batch.core.explore Interfaces and related classes to support meta data browsing. 
org.springframework.batch.core.explore.support Specific implementations of explorer concerns. 
org.springframework.batch.core.job Specific implementations of job concerns. 
org.springframework.batch.core.job.flow   
org.springframework.batch.core.job.flow.support.state   
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.listener Generic implementations of core batch listener interfaces. 
org.springframework.batch.core.partition   
org.springframework.batch.core.partition.support   
org.springframework.batch.core.repository Interfaces and generic implementations of repository concerns. 
org.springframework.batch.core.repository.dao Specific implementations of dao concerns. 
org.springframework.batch.core.repository.support Specific implementations of repository concerns. 
org.springframework.batch.core.resource   
org.springframework.batch.core.scope.context   
org.springframework.batch.core.step Specific implementations of step concerns. 
org.springframework.batch.core.step.item Specific implementations of step concerns for item-oriented approach. 
org.springframework.batch.core.step.job   
org.springframework.batch.core.step.skip Specific implementations of skip concerns for items in a step. 
org.springframework.batch.core.step.tasklet Interfaces and generic implementations of tasklet concerns. 
org.springframework.batch.test   
 

Classes in org.springframework.batch.core used by org.springframework.batch.core
BatchStatus
          Enumeration representing the status of a an Execution.
Entity
          Batch Domain Entity class.
ExitStatus
          Value object used to carry information about the status of a job or step execution.
JobExecution
          Batch domain object representing the execution of a job.
JobExecutionException
          Root of exception hierarchy for checked exceptions in job and step execution.
JobInstance
          Batch domain object representing a uniquely identifiable job run - it's identity is given by the pair Job and JobParameters.
JobInterruptedException
          Exception to indicate the the job has been interrupted.
JobParameter
          Domain representation of a parameter to a batch job.
JobParameter.ParameterType
          Enumeration representing the type of a JobParameter.
JobParameters
          Value object representing runtime parameters to a batch job.
JobParametersBuilder
          Helper class for creating JobParameters.
JobParametersIncrementer
          Interface for obtaining the next JobParameters in a sequence.
JobParametersInvalidException
          Exception for Job to signal that some JobParameters are invalid.
JobParametersValidator
          Strategy interface for a Job to use in validating its parameters for an execution.
StepContribution
          Represents a contribution to a StepExecution, buffering changes until they can be applied at a chunk boundary.
StepExecution
          Batch domain object representation the execution of a step.
StepListener
          Marker interface that acts as a parent to all step domain listeners, such as: StepExecutionListener, ChunkListener, ItemReadListener and ItemWriteListener
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.configuration
Job
          Batch domain object representing a job.
JobExecutionException
          Root of exception hierarchy for checked exceptions in job and step execution.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.configuration.support
Job
          Batch domain object representing a job.
JobExecution
          Batch domain object representing the execution of a job.
JobParametersIncrementer
          Interface for obtaining the next JobParameters in a sequence.
JobParametersValidator
          Strategy interface for a Job to use in validating its parameters for an execution.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.converter
JobParameters
          Value object representing runtime parameters to a batch job.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.explore
JobExecution
          Batch domain object representing the execution of a job.
JobInstance
          Batch domain object representing a uniquely identifiable job run - it's identity is given by the pair Job and JobParameters.
StepExecution
          Batch domain object representation the execution of a step.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.explore.support
JobExecution
          Batch domain object representing the execution of a job.
JobInstance
          Batch domain object representing a uniquely identifiable job run - it's identity is given by the pair Job and JobParameters.
StepExecution
          Batch domain object representation the execution of a step.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.job
Job
          Batch domain object representing a job.
JobExecution
          Batch domain object representing the execution of a job.
JobExecutionException
          Root of exception hierarchy for checked exceptions in job and step execution.
JobExecutionListener
          Provide callbacks at specific points in the lifecycle of a Job.
JobInterruptedException
          Exception to indicate the the job has been interrupted.
JobParameters
          Value object representing runtime parameters to a batch job.
JobParametersIncrementer
          Interface for obtaining the next JobParameters in a sequence.
JobParametersInvalidException
          Exception for Job to signal that some JobParameters are invalid.
JobParametersValidator
          Strategy interface for a Job to use in validating its parameters for an execution.
StartLimitExceededException
          Indicates the step's start limit has been exceeded.
Step
          Batch domain interface representing the configuration of a step.
StepExecution
          Batch domain object representation the execution of a step.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.job.flow
Job
          Batch domain object representing a job.
JobExecution
          Batch domain object representing the execution of a job.
JobExecutionException
          Root of exception hierarchy for checked exceptions in job and step execution.
JobInterruptedException
          Exception to indicate the the job has been interrupted.
StartLimitExceededException
          Indicates the step's start limit has been exceeded.
Step
          Batch domain interface representing the configuration of a step.
StepExecution
          Batch domain object representation the execution of a step.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.job.flow.support.state
Step
          Batch domain interface representing the configuration of a step.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.launch
Job
          Batch domain object representing a job.
JobExecution
          Batch domain object representing the execution of a job.
JobExecutionException
          Root of exception hierarchy for checked exceptions in job and step execution.
JobParameters
          Value object representing runtime parameters to a batch job.
JobParametersInvalidException
          Exception for Job to signal that some JobParameters are invalid.
UnexpectedJobExecutionException
          Indicates to the framework that a critical error has occurred and processing should immediately stop.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.launch.support
Job
          Batch domain object representing a job.
JobExecution
          Batch domain object representing the execution of a job.
JobParameters
          Value object representing runtime parameters to a batch job.
JobParametersIncrementer
          Interface for obtaining the next JobParameters in a sequence.
JobParametersInvalidException
          Exception for Job to signal that some JobParameters are invalid.
UnexpectedJobExecutionException
          Indicates to the framework that a critical error has occurred and processing should immediately stop.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.listener
ChunkListener
          Listener interface for the lifecycle of a chunk.
ExitStatus
          Value object used to carry information about the status of a job or step execution.
ItemProcessListener
          Listener interface for the processing of an item.
ItemReadListener
          Listener interface around the reading of an item.
ItemWriteListener
          Listener interface for the writing of items.
JobExecution
          Batch domain object representing the execution of a job.
JobExecutionListener
          Provide callbacks at specific points in the lifecycle of a Job.
SkipListener
          Interface for listener to skipped items.
StepExecution
          Batch domain object representation the execution of a step.
StepExecutionListener
          Listener interface for the lifecycle of a Step.
StepListener
          Marker interface that acts as a parent to all step domain listeners, such as: StepExecutionListener, ChunkListener, ItemReadListener and ItemWriteListener
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.partition
JobExecutionException
          Root of exception hierarchy for checked exceptions in job and step execution.
StepExecution
          Batch domain object representation the execution of a step.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.partition.support
JobExecutionException
          Root of exception hierarchy for checked exceptions in job and step execution.
Step
          Batch domain interface representing the configuration of a step.
StepExecution
          Batch domain object representation the execution of a step.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.repository
JobExecution
          Batch domain object representing the execution of a job.
JobExecutionException
          Root of exception hierarchy for checked exceptions in job and step execution.
JobInstance
          Batch domain object representing a uniquely identifiable job run - it's identity is given by the pair Job and JobParameters.
JobParameters
          Value object representing runtime parameters to a batch job.
StepExecution
          Batch domain object representation the execution of a step.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.repository.dao
JobExecution
          Batch domain object representing the execution of a job.
JobInstance
          Batch domain object representing a uniquely identifiable job run - it's identity is given by the pair Job and JobParameters.
JobParameters
          Value object representing runtime parameters to a batch job.
StepExecution
          Batch domain object representation the execution of a step.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.repository.support
JobExecution
          Batch domain object representing the execution of a job.
JobInstance
          Batch domain object representing a uniquely identifiable job run - it's identity is given by the pair Job and JobParameters.
JobParameters
          Value object representing runtime parameters to a batch job.
StepExecution
          Batch domain object representation the execution of a step.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.resource
StepExecution
          Batch domain object representation the execution of a step.
StepExecutionListener
          Listener interface for the lifecycle of a Step.
StepListener
          Marker interface that acts as a parent to all step domain listeners, such as: StepExecutionListener, ChunkListener, ItemReadListener and ItemWriteListener
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.scope.context
JobInterruptedException
          Exception to indicate the the job has been interrupted.
Step
          Batch domain interface representing the configuration of a step.
StepExecution
          Batch domain object representation the execution of a step.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.step
ExitStatus
          Value object used to carry information about the status of a job or step execution.
JobInterruptedException
          Exception to indicate the the job has been interrupted.
Step
          Batch domain interface representing the configuration of a step.
StepExecution
          Batch domain object representation the execution of a step.
StepExecutionListener
          Listener interface for the lifecycle of a Step.
StepListener
          Marker interface that acts as a parent to all step domain listeners, such as: StepExecutionListener, ChunkListener, ItemReadListener and ItemWriteListener
UnexpectedJobExecutionException
          Indicates to the framework that a critical error has occurred and processing should immediately stop.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.step.item
ItemProcessListener
          Listener interface for the processing of an item.
ItemReadListener
          Listener interface around the reading of an item.
ItemWriteListener
          Listener interface for the writing of items.
StepContribution
          Represents a contribution to a StepExecution, buffering changes until they can be applied at a chunk boundary.
StepListener
          Marker interface that acts as a parent to all step domain listeners, such as: StepExecutionListener, ChunkListener, ItemReadListener and ItemWriteListener
UnexpectedJobExecutionException
          Indicates to the framework that a critical error has occurred and processing should immediately stop.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.step.job
Job
          Batch domain object representing a job.
JobParameters
          Value object representing runtime parameters to a batch job.
Step
          Batch domain interface representing the configuration of a step.
StepExecution
          Batch domain object representation the execution of a step.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.step.skip
UnexpectedJobExecutionException
          Indicates to the framework that a critical error has occurred and processing should immediately stop.
 

Classes in org.springframework.batch.core used by org.springframework.batch.core.step.tasklet
ChunkListener
          Listener interface for the lifecycle of a chunk.
ExitStatus
          Value object used to carry information about the status of a job or step execution.
Step
          Batch domain interface representing the configuration of a step.
StepContribution
          Represents a contribution to a StepExecution, buffering changes until they can be applied at a chunk boundary.
StepExecution
          Batch domain object representation the execution of a step.
StepExecutionListener
          Listener interface for the lifecycle of a Step.
StepListener
          Marker interface that acts as a parent to all step domain listeners, such as: StepExecutionListener, ChunkListener, ItemReadListener and ItemWriteListener
 

Classes in org.springframework.batch.core used by org.springframework.batch.test
Job
          Batch domain object representing a job.
JobExecution
          Batch domain object representing the execution of a job.
JobInstance
          Batch domain object representing a uniquely identifiable job run - it's identity is given by the pair Job and JobParameters.
JobParameters
          Value object representing runtime parameters to a batch job.
JobParametersIncrementer
          Interface for obtaining the next JobParameters in a sequence.
Step
          Batch domain interface representing the configuration of a step.
StepExecution
          Batch domain object representation the execution of a step.
 



Copyright © 2013 SpringSource. All Rights Reserved.