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

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

Introduction

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

Prototype

public String getId() 

Source Link

Usage

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

/**
 * @see Scope#getConversationId()//from w w w .  ja v a 2 s  .  co m
 */
@Override
public String getConversationId() {
    JobContext context = getContext();
    return context.getId();
}