log.info("Handled rpc request for type=" + request.getType() + ". Returning responseObj " + responseObj);
return responseObj;
}
private BaseResponseObject handleGetStepExecutionReq(GetStepExecutionReq request) {
GetStepExecutionRes response = new GetStepExecutionRes();
StepExecution stepExecution = jobExplorer.getStepExecution(request.jobExecutionId, request.stepExecutionId);
response.stepExecution = JobRepositoryRpcFactory.convertStepExecutionType(stepExecution);
return response;
}