Package org.springframework.batch.core.step.skip

Examples of org.springframework.batch.core.step.skip.CompositeSkipPolicy


      Assert.state(!(skippableExceptionClasses.isEmpty() && skipLimit > 0),
          "If a skip limit is provided then skippable exceptions must also be specified");
      skipPolicy = limitCheckingItemSkipPolicy;
    }
    else if (limitCheckingItemSkipPolicy != null) {
      skipPolicy = new CompositeSkipPolicy(new SkipPolicy[] { skipPolicy, limitCheckingItemSkipPolicy });
    }
    return skipPolicy;
  }
View Full Code Here

TOP

Related Classes of org.springframework.batch.core.step.skip.CompositeSkipPolicy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.