Package org.springframework.batch.core.scope.context

Examples of org.springframework.batch.core.scope.context.StepContext.removeAttribute()


   */
  @Override
  public Object remove(String name) {
    StepContext context = getContext();
    logger.debug(String.format("Removing from scope=%s, name=%s", this.getName(), name));
    return context.removeAttribute(name);
  }

  /**
   * Get an attribute accessor in the form of a {@link StepContext} that can
   * be used to store scoped bean instances.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.