public class EJBInvokerJob extends java.lang.Object implements Job
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 Class[] of the types 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).INITIAL_CONTEXT_FACTORY - the context factory used to
build the context.PROVIDER_URL - the name of the environment property
for specifying configuration information for the service provider to use.
The result of the EJB method invocation will be available to
Job/TriggerListeners via
.
JobExecutionContext.getResult()
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
CREDENTIALS |
static java.lang.String |
EJB_ARG_TYPES_KEY |
static java.lang.String |
EJB_ARGS_KEY |
static java.lang.String |
EJB_JNDI_NAME_KEY |
static java.lang.String |
EJB_METHOD_KEY |
static java.lang.String |
INITIAL_CONTEXT_FACTORY |
static java.lang.String |
PRINCIPAL |
static java.lang.String |
PROVIDER_URL |
| Constructor and Description |
|---|
EJBInvokerJob() |
| Modifier and Type | Method and Description |
|---|---|
void |
execute(JobExecutionContext context)
|
public static final java.lang.String EJB_JNDI_NAME_KEY
public static final java.lang.String EJB_METHOD_KEY
public static final java.lang.String EJB_ARG_TYPES_KEY
public static final java.lang.String EJB_ARGS_KEY
public static final java.lang.String INITIAL_CONTEXT_FACTORY
public static final java.lang.String PROVIDER_URL
public static final java.lang.String PRINCIPAL
public static final java.lang.String CREDENTIALS
public void execute(JobExecutionContext context) throws JobExecutionException
Job
Called by the when a Scheduler
fires that is associated with the TriggerJob.
The implementation may wish to set a
result object on the
JobExecutionContext before this method exits. The result itself
is meaningless to Quartz, but may be informative to
or
JobListeners that are watching the job's
execution.
TriggerListeners
execute in interface JobJobExecutionException - if there is an exception while executing the job.