* @see org.apache.oozie.BaseEngine#resume(java.lang.String)
*/
@Override
public void resume(String jobId) throws CoordinatorEngineException {
try {
new CoordResumeCommand(jobId).call();
}
catch (CommandException e) {
throw new CoordinatorEngineException(e);
}
}