Package net.sf.sstk.retry

Examples of net.sf.sstk.retry.SimpleRetryDefinition


  public RetryDefinition createDefinition(final Retry annotation,
      final BeanFactory beanFactory) {
    final ArgumentSaver argSaver = getArgSaver(annotation.argumentSaver());
    final CleanUpStrategy cleanUpStrategy = getCleanUpStrategy(annotation
        .cleanUpStrategy());
    return new SimpleRetryDefinition(argSaver, cleanUpStrategy, annotation
        .retryFor(), annotation.numberOfRetries());
  }
View Full Code Here

TOP

Related Classes of net.sf.sstk.retry.SimpleRetryDefinition

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.