Search in sources :

Example 1 with CoordActionGetForTimeoutJPAExecutor

use of org.apache.oozie.executor.jpa.CoordActionGetForTimeoutJPAExecutor in project oozie by apache.

the class CoordActionTimeOutXCommand method loadState.

/* (non-Javadoc)
     * @see org.apache.oozie.command.XCommand#loadState()
     */
@Override
protected void loadState() throws CommandException {
    jpaService = Services.get().get(JPAService.class);
    if (jpaService == null) {
        throw new CommandException(ErrorCode.E0610);
    }
    try {
        actionBean = jpaService.execute(new CoordActionGetForTimeoutJPAExecutor(actionBean.getId()));
    } catch (JPAExecutorException e) {
        throw new CommandException(e);
    }
    LogUtils.setLogInfo(actionBean);
}
Also used : JPAExecutorException(org.apache.oozie.executor.jpa.JPAExecutorException) CoordActionGetForTimeoutJPAExecutor(org.apache.oozie.executor.jpa.CoordActionGetForTimeoutJPAExecutor) CommandException(org.apache.oozie.command.CommandException) JPAService(org.apache.oozie.service.JPAService)

Example 2 with CoordActionGetForTimeoutJPAExecutor

use of org.apache.oozie.executor.jpa.CoordActionGetForTimeoutJPAExecutor in project oozie by apache.

the class CoordActionSkipXCommand method loadState.

@Override
protected void loadState() throws CommandException {
    jpaService = Services.get().get(JPAService.class);
    if (jpaService == null) {
        throw new CommandException(ErrorCode.E0610);
    }
    try {
        actionBean = jpaService.execute(new CoordActionGetForTimeoutJPAExecutor(actionBean.getId()));
    } catch (JPAExecutorException e) {
        throw new CommandException(e);
    }
    LogUtils.setLogInfo(actionBean);
}
Also used : JPAExecutorException(org.apache.oozie.executor.jpa.JPAExecutorException) CoordActionGetForTimeoutJPAExecutor(org.apache.oozie.executor.jpa.CoordActionGetForTimeoutJPAExecutor) CommandException(org.apache.oozie.command.CommandException) JPAService(org.apache.oozie.service.JPAService)

Aggregations

CommandException (org.apache.oozie.command.CommandException)2 CoordActionGetForTimeoutJPAExecutor (org.apache.oozie.executor.jpa.CoordActionGetForTimeoutJPAExecutor)2 JPAExecutorException (org.apache.oozie.executor.jpa.JPAExecutorException)2 JPAService (org.apache.oozie.service.JPAService)2