Example usage for org.springframework.batch.core.scope.context StepContext getId

List of usage examples for org.springframework.batch.core.scope.context StepContext getId

Introduction

In this page you can find the example usage for org.springframework.batch.core.scope.context StepContext getId.

Prototype

public String getId() 

Source Link

Usage

From source file:org.springframework.batch.core.scope.StepScope.java

/**
 * @see Scope#getConversationId()/*from   w  w  w .java 2s .  c om*/
 */
@Override
public String getConversationId() {
    StepContext context = getContext();
    return context.getId();
}