| Home >> All >> org >> quartz >> [ jobs Javadoc ] |
| | org.quartz.jobs.ee.* (3) | | org.quartz.jobs.ee.ejb.* (1) | | org.quartz.jobs.ee.jmx.* (1) |
| | org.quartz.jobs.ee.mail.* (1) |
org.quartz.jobs: Javadoc index of package org.quartz.jobs.
Package Samples:
org.quartz.jobs.ee.mail
org.quartz.jobs.ee.jmx
org.quartz.jobs.ee.ejb
Classes:
JMXInvokerJob: Generic JMX invoker Job. It supports any number or type of parameters to the JMX bean. The required parameters are as follows (case doesn't matter): JMX_OBJECTNAME This is the fully qualifed name of the object (ie in JBoss to lookup the log4j jmx bean you would specify "jboss.system:type=Log4jService,service=Logging" JMX_METHOD This is the method to invoke on the specified JMX Bean. (ie in JBoss to change the log level you would specify "setLoggerLevel" JMX_PARAMDEFS This is a definition of the parameters to be passed to the specified method and their corresponding java types. Each parameter definition ...
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 (optional, if left out, there are no arguments). EJB_ARG_TYPES_KEY - an Object[] of the args to pass to the method (optional, if left out, the types will be derived by calling getClass() on each of the arguments). The following keys can also be used at need: INITIAL_CONTEXT_FACTORY ...
NoOpJob: An implementation of Job, that does absolutely nothing - useful for system which only wish to use org.quartz.TriggerListener s and org.quartz.JobListener s , rather than writing Jobs that perform work.
FileScanJob: Inspects a file and compares whether it's "last modified date" has changed since the last time it was inspected. If the file has been updated, the job invokes a "call-back" method on an identified FileScanListener that can be found in the SchedulerContext .
SendMailJob: A Job which sends an e-mail with the configured content to the configured recipient.
FileScanListener: Interface for objects wishing to receive a 'call-back' from a FileScanJob .
NativeJob
| Home | Contact Us | Privacy Policy | Terms of Service |