Uses of Class
org.springframework.batch.item.ExecutionContext

Packages that use ExecutionContext
org.springframework.batch.core Core domain context for Spring Batch covering jobs, steps, configuration and execution abstractions. 
org.springframework.batch.core.repository.dao Specific implementations of dao concerns. 
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.tasklet Interfaces and generic implementations of tasklet concerns. 
org.springframework.batch.item Infrastructure interfaces and primary dependencies for item concerns. 
org.springframework.batch.item.database Infrastructure implementations of database based item readers and writers. 
org.springframework.batch.item.database.support   
org.springframework.batch.item.file Infrastructure implementations of io file concerns. 
org.springframework.batch.item.file.separator Infrastructure implementations of io file support separator concerns. 
org.springframework.batch.item.support Internal support package 
org.springframework.batch.item.xml Infrastructure implementations of xml input and output. 
 

Uses of ExecutionContext in org.springframework.batch.core
 

Methods in org.springframework.batch.core that return ExecutionContext
 ExecutionContext StepExecution.getExecutionContext()
          Returns the ExecutionContext for this execution
 

Methods in org.springframework.batch.core with parameters of type ExecutionContext
 void StepExecution.setExecutionContext(ExecutionContext executionContext)
          Sets the ExecutionContext for this execution
 

Uses of ExecutionContext in org.springframework.batch.core.repository.dao
 

Methods in org.springframework.batch.core.repository.dao that return ExecutionContext
 ExecutionContext StepExecutionDao.findExecutionContext(StepExecution stepExecution)
          Find all ExecutionContext for the given StepExecution.
 ExecutionContext MapStepExecutionDao.findExecutionContext(StepExecution stepExecution)
           
 ExecutionContext JdbcStepExecutionDao.findExecutionContext(StepExecution stepExecution)
           
 

Uses of ExecutionContext in org.springframework.batch.core.step
 

Methods in org.springframework.batch.core.step with parameters of type ExecutionContext
protected abstract  void AbstractStep.close(ExecutionContext ctx)
           
protected abstract  void AbstractStep.open(ExecutionContext ctx)
           
 

Uses of ExecutionContext in org.springframework.batch.core.step.item
 

Methods in org.springframework.batch.core.step.item with parameters of type ExecutionContext
protected  void ItemOrientedStep.close(ExecutionContext ctx)
           
protected  void ItemOrientedStep.open(ExecutionContext ctx)
           
 

Uses of ExecutionContext in org.springframework.batch.core.step.tasklet
 

Methods in org.springframework.batch.core.step.tasklet with parameters of type ExecutionContext
protected  void TaskletStep.close(ExecutionContext ctx)
           
protected  void TaskletStep.open(ExecutionContext ctx)
           
 

Uses of ExecutionContext in org.springframework.batch.item
 

Methods in org.springframework.batch.item with parameters of type ExecutionContext
 void ItemStreamSupport.close(ExecutionContext executionContext)
          No-op.
 void ItemStream.close(ExecutionContext executionContext)
          If any resources are needed for the stream to operate they need to be destroyed here.
 void ItemStreamSupport.open(ExecutionContext executionContext)
          No-op.
 void ItemStream.open(ExecutionContext executionContext)
          Open the stream for the provided ExecutionContext.
 void ItemStreamSupport.update(ExecutionContext executionContext)
          Return empty ExecutionContext.
 void ItemStream.update(ExecutionContext executionContext)
          Indicates that the execution context provided during open is about to be saved.
 

Uses of ExecutionContext in org.springframework.batch.item.database
 

Methods in org.springframework.batch.item.database with parameters of type ExecutionContext
 void JdbcCursorItemReader.close(ExecutionContext executionContext)
          Close this input source.
 void HibernateCursorItemReader.close(ExecutionContext executionContext)
          Closes the result set cursor and hibernate session.
 void DrivingQueryItemReader.close(ExecutionContext executionContext)
          Close the resource by setting the list of keys to null, allowing them to be garbage collected.
 void JdbcCursorItemReader.open(ExecutionContext context)
           
 void HibernateCursorItemReader.open(ExecutionContext executionContext)
          Creates cursor for the query.
 void DrivingQueryItemReader.open(ExecutionContext executionContext)
          Initialize the item reader by delegating to the subclass in order to retrieve the keys.
 List KeyCollector.retrieveKeys(ExecutionContext executionContext)
          Retrieve the keys to be iterated over.
 void JdbcCursorItemReader.update(ExecutionContext executionContext)
           
 void HibernateCursorItemReader.update(ExecutionContext executionContext)
           
 void DrivingQueryItemReader.update(ExecutionContext executionContext)
           
 void KeyCollector.updateContext(Object key, ExecutionContext executionContext)
          Given the provided key, store it in the provided ExecutionContext.
 

Uses of ExecutionContext in org.springframework.batch.item.database.support
 

Methods in org.springframework.batch.item.database.support with parameters of type ExecutionContext
 List SingleColumnJdbcKeyCollector.retrieveKeys(ExecutionContext executionContext)
           
 List MultipleColumnJdbcKeyCollector.retrieveKeys(ExecutionContext executionContext)
           
 List IbatisKeyCollector.retrieveKeys(ExecutionContext executionContext)
           
 void SingleColumnJdbcKeyCollector.updateContext(Object key, ExecutionContext executionContext)
          Get the restart data representing the last processed key.
 void MultipleColumnJdbcKeyCollector.updateContext(Object key, ExecutionContext executionContext)
           
 void IbatisKeyCollector.updateContext(Object key, ExecutionContext executionContext)
           
 

Uses of ExecutionContext in org.springframework.batch.item.file
 

Methods in org.springframework.batch.item.file with parameters of type ExecutionContext
 void FlatFileItemWriter.close(ExecutionContext executionContext)
           
 void FlatFileItemReader.close(ExecutionContext executionContext)
          Close and null out the reader.
 void FlatFileItemWriter.open(ExecutionContext executionContext)
          Initialize the Output Template.
 void FlatFileItemReader.open(ExecutionContext executionContext)
          Initialize the reader if necessary.
 void FlatFileItemWriter.update(ExecutionContext executionContext)
           
 void FlatFileItemReader.update(ExecutionContext executionContext)
          This method returns the execution attributes for the reader.
 

Uses of ExecutionContext in org.springframework.batch.item.file.separator
 

Methods in org.springframework.batch.item.file.separator with parameters of type ExecutionContext
 void ResourceLineReader.close(ExecutionContext executionContext)
          Close the reader associated with this input source.
 

Uses of ExecutionContext in org.springframework.batch.item.support
 

Methods in org.springframework.batch.item.support with parameters of type ExecutionContext
 void CompositeItemStream.close(ExecutionContext executionContext)
          Broadcast the call to close.
 void CompositeItemStream.open(ExecutionContext executionContext)
          Broadcast the call to open.
 void CompositeItemStream.update(ExecutionContext executionContext)
          Simple aggregate ExecutionContext provider for the contributions registered under the given key.
 

Uses of ExecutionContext in org.springframework.batch.item.xml
 

Methods in org.springframework.batch.item.xml with parameters of type ExecutionContext
 void StaxEventItemWriter.close(ExecutionContext executionContext)
          Flush and close the output source.
 void StaxEventItemReader.close(ExecutionContext executionContext)
           
 void StaxEventItemWriter.open(ExecutionContext executionContext)
          Open the output source
 void StaxEventItemReader.open(ExecutionContext executionContext)
           
 void StaxEventItemWriter.update(ExecutionContext executionContext)
          Get the restart data.
 void StaxEventItemReader.update(ExecutionContext executionContext)
           
 



Copyright © 2008 SpringSource. All Rights Reserved.