Uses of Interface
org.springframework.batch.core.step.skip.SkipPolicy

Packages that use SkipPolicy
org.springframework.batch.core.step.item Specific implementations of step concerns for item-oriented approach. 
org.springframework.batch.core.step.skip Specific implementations of skip concerns for items in a step. 
 

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

Methods in org.springframework.batch.core.step.item that return SkipPolicy
protected  SkipPolicy FaultTolerantStepFactoryBean.createSkipPolicy()
           
 

Methods in org.springframework.batch.core.step.item with parameters of type SkipPolicy
 void FaultTolerantChunkProcessor.setProcessSkipPolicy(SkipPolicy SkipPolicy)
           
 void FaultTolerantStepFactoryBean.setSkipPolicy(SkipPolicy skipPolicy)
          A SkipPolicy that determines the outcome of an exception when processing an item.
 void FaultTolerantChunkProvider.setSkipPolicy(SkipPolicy SkipPolicy)
          The policy that determines whether exceptions can be skipped on read.
 void FaultTolerantChunkProcessor.setWriteSkipPolicy(SkipPolicy SkipPolicy)
           
 

Uses of SkipPolicy in org.springframework.batch.core.step.skip
 

Classes in org.springframework.batch.core.step.skip that implement SkipPolicy
 class AlwaysSkipItemSkipPolicy
          Implementation of the SkipPolicy interface that will always return that an item should be skipped.
 class CompositeSkipPolicy
           
 class ExceptionClassifierSkipPolicy
          A SkipPolicy that depends on an exception classifier to make its decision, and then delegates to the classifier result.
 class LimitCheckingItemSkipPolicy
           SkipPolicy that determines whether or not reading should continue based upon how many items have been skipped.
 class NeverSkipItemSkipPolicy
          SkipPolicy implementation that always returns false, indicating that an item should not be skipped.
 

Methods in org.springframework.batch.core.step.skip with parameters of type SkipPolicy
 void CompositeSkipPolicy.setSkipPolicies(SkipPolicy[] skipPolicies)
           
 

Method parameters in org.springframework.batch.core.step.skip with type arguments of type SkipPolicy
 void ExceptionClassifierSkipPolicy.setExceptionClassifier(SubclassClassifier<Throwable,SkipPolicy> classifier)
          The classifier that will be used to choose a delegate policy.
 void ExceptionClassifierSkipPolicy.setPolicyMap(Map<Class<? extends Throwable>,SkipPolicy> policyMap)
          Setter for policy map.
 

Constructors in org.springframework.batch.core.step.skip with parameters of type SkipPolicy
CompositeSkipPolicy(SkipPolicy[] skipPolicies)
           
 



Copyright © 2013 SpringSource. All Rights Reserved.