public void setJobExplorer(JobExplorer jobExplorer) {
this.jobExplorer = jobExplorer;
}
public BaseResponseObject get(BaseObject request) {
BaseResponseObject responseObj = null;
log.info("Handling rpc request for type=" + request.getType());
if (request.getType().equals("IsJobInstanceExistsReq")) {
responseObj = handleIsJobInstanceExists((IsJobInstanceExistsReq)request);
} else if (request.getType().equals("CreateJobExecutionReq")) {