Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.quartz.ee.ejb.* (1)org.quartz.ee.jmx.* (2)org.quartz.ee.jmx.jboss.* (2)
org.quartz.ee.jta.* (3)org.quartz.ee.servlet.* (1)

Package Samples:

org.quartz.ee.servlet
org.quartz.ee.jta
org.quartz.ee.jmx.jboss
org.quartz.ee.ejb

Classes:

QuartzInitializerServlet: A Servlet that can be used to initialize Quartz, if configured as a load-on-startup servlet in a web application. You'll want to add something like this to your WEB-INF/web.xml file: <servlet> <servlet-name> QuartzInitializer </servlet-name> <display-name> Quartz Initializer Servlet </display-name> <servlet-class> org.quartz.ee.servlet.QuartzInitializerServlet </servlet-class> <load-on-startup> 1 </load-on-startup> <init-param> <param-name>config-file</param-name> <param-value>/some/path/my_quartz.properties</param-value> ...
JTAJobRunShellFactory: Responsible for creating the instances of JTAJobRunShell to be used within the org.quartz.core.QuartzScheduler instance. This implementation does not re-use any objects, it simply makes a new JTAJobRunShell each time borrowJobRunShell() is called.
EJBInvokerJob: A Job that invokes a method on an EJB. Expects the properties corresponding to the following keys to be in the JobDataMap when it executes: EJB_JNDI_NAME_KEY - the JNDI name (location) of the EJB's home interface. EJB_METHOD_KEY - the name of the method to invoke on the EJB. EJB_ARGS_KEY - an Object[] of the args to pass to the method.
JTAJobRunShell: An extension of org.quartz.core.JobRunShell that begins an XA transaction before executing the Job, and commits (or rolls-back) the transaction after execution completes.
QuartzServiceMBean: See org/quartz/ee/jmx/jboss/doc-files/quartz-service.xml for an example service mbean deployment descriptor.
QuartzService: See org/quartz/ee/jmx/jboss/doc-files/quartz-service.xml for an example service mbean deployment descriptor.
UserTransactionHelper: A helper for obtaining a handle to a UserTransaction...

Home | Contact Us | Privacy Policy | Terms of Service