response.stepExecution = JobRepositoryRpcFactory.convertStepExecutionType(lastStepExecution);
return response;
}
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;
}