Package org.exist.scheduler

Examples of org.exist.scheduler.JobException


        }

        public void execute(final BrokerPool brokerpool, final Map<String, ?> params) throws JobException {
            final SessionManager manager = (SessionManager)params.get("session-manager");
            if (manager == null) {
                throw new JobException(JobExceptionAction.JOB_ABORT, "parameter 'session-manager' is not set");
            }
            manager.timeoutCheck();
        }
View Full Code Here

TOP

Related Classes of org.exist.scheduler.JobException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.