List of usage examples for org.springframework.batch.core StepExecution getId
public Long getId()
From source file:org.springframework.yarn.batch.repository.JobRepositoryService.java
private BaseResponseObject handleUpdateWithStepExecutionReq(UpdateWithStepExecutionReq request) { UpdateWithStepExecutionRes response = null; StepExecution stepExecution = JobRepositoryRpcFactory.convertStepExecutionType(request.stepExecution); jobRepository.update(stepExecution); response = new UpdateWithStepExecutionRes(); response.id = stepExecution.getId(); response.version = stepExecution.getVersion(); return response; }