428429430431432433434435
} return jobs; } catch (CoordinatorEngineException ex) { throw new OozieClientException(ex.getErrorCode().toString(), ex); } }
446447448449450451452
* info could not be retrieved. */ @Override @Deprecated public List<WorkflowJob> getJobsInfo(String filter) throws OozieClientException { throw new OozieClientException(ErrorCode.E0301.toString(), "no-op"); }
152153154155156157158159
public String submit(Properties conf) throws OozieClientException { try { return dagEngine.submitJob(new XConfiguration(conf), false); } catch (DagEngineException ex) { throw new OozieClientException(ex.getErrorCode().toString(), ex); } }
168169170171172173174175
public void start(String jobId) throws OozieClientException { try { dagEngine.start(jobId); } catch (DagEngineException ex) { throw new OozieClientException(ex.getErrorCode().toString(), ex); } }
185186187188189190191192
public String run(Properties conf) throws OozieClientException { try { return dagEngine.submitJob(new XConfiguration(conf), true); } catch (DagEngineException ex) { throw new OozieClientException(ex.getErrorCode().toString(), ex); } }
202203204205206207208209
public void reRun(String jobId, Properties conf) throws OozieClientException { try { dagEngine.reRun(jobId, new XConfiguration(conf)); } catch (DagEngineException ex) { throw new OozieClientException(ex.getErrorCode().toString(), ex); } }
218219220221222223224225
public void suspend(String jobId) throws OozieClientException { try { dagEngine.suspend(jobId); } catch (DagEngineException ex) { throw new OozieClientException(ex.getErrorCode().toString(), ex); } }
234235236237238239240241
public void resume(String jobId) throws OozieClientException { try { dagEngine.resume(jobId); } catch (DagEngineException ex) { throw new OozieClientException(ex.getErrorCode().toString(), ex); } }
250251252253254255256257
public void kill(String jobId) throws OozieClientException { try { dagEngine.kill(jobId); } catch (DagEngineException ex) { throw new OozieClientException(ex.getErrorCode().toString(), ex); } }
267268269270271272273274
public WorkflowJob getJobInfo(String jobId) throws OozieClientException { try { return dagEngine.getJob(jobId); } catch (DagEngineException ex) { throw new OozieClientException(ex.getErrorCode().toString(), ex); } }