return JobRepositoryRpcFactory.convertJobExecutionType(response.jobExecution);
}
@Override
public StepExecution getStepExecution(Long jobExecutionId, Long stepExecutionId) {
GetStepExecutionReq request = JobRepositoryRpcFactory.buildGetStepExecutionReq(jobExecutionId, stepExecutionId);
GetStepExecutionRes response = (GetStepExecutionRes) getAppmasterScOperations().doMindRequest(request);
return JobRepositoryRpcFactory.convertStepExecutionType(response.stepExecution);
}