|
IBM WebSphere Application ServerTM Release 7 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface APIEventHandlerPlugin
This interface supports the creation of API event handlers.
API events occur when a human task changes its state or when a task property is updated. These events can be used by other components and applications to participate in state transitions of human tasks. Use the APIEventHandlerPlugin service provider interface (SPI) to create plug-ins to get informed about events send by the API or the internal events that have equivalent API events.
To handle API events, the event handler is invoked directly before a modification is done (pre-event method) and after the modification is done (post-event method).
This interface provides methods that are called when an API pre event or post event occurs.
Field Summary | |
---|---|
static java.lang.String |
COPYRIGHT
|
Method Summary | |
---|---|
void |
postCallTask(Task task,
java.io.Serializable inputMessage,
java.io.Serializable returnMessage,
TaskException taskException)
This method is called after a "CALL TASK" request was executed. |
void |
postCancelClaim(Task task,
TaskException taskException)
This method is called after a "CANCEL CLAIM" request was executed. |
void |
postClaim(Task task,
java.lang.Object inputMessage,
TaskException taskException)
Deprecated. since v6.0.2 - use postClaim(Task, Serializable, TaskException) |
void |
postComplete(Task task,
java.io.Serializable outputMessage,
java.lang.String faultName,
java.io.Serializable faultMessage,
TaskException taskException)
This method is called after a "COMPLETE" request was executed. |
void |
postCompleteWithFollowOnTask(Task task,
Task previousTask,
TaskException taskException)
This method is called after a "COMPLETE WITH FOLLOW-ON TASK" request was executed. |
void |
postCompleteWithNewFollowOnTask(Task newTask,
TaskModel newTaskModel,
TaskTemplate template,
Task previousTask,
java.io.Serializable inputMessage,
TaskException taskException)
This method is called after a "COMPLETE WITH NEW FOLLOW-ON TASK" request was executed. |
void |
postCreateAndCallTask(Task task,
TaskModel newTaskModel,
TaskTemplate template,
java.io.Serializable inputMessage,
TaskException taskException)
This method is called after a "CREATE AND CALL TASK" request was executed. |
void |
postCreateAndStartTask(Task newTask,
TaskModel newTaskModel,
TaskTemplate template,
java.io.Serializable inputMessage,
ReplyHandler replyHandler,
TaskException taskException)
This method is called after a "CREATE AND START TASK" request was executed. |
void |
postCreateAndStartTaskAsSubTask(Task newTask,
TaskModel newTaskModel,
TaskTemplate template,
Task parentTask,
java.io.Serializable inputMessage,
TaskException taskException)
This method is called after a "CREATE AND START TASK AS SUBTASK" request was executed. |
void |
postCreateTask(Task newTask,
TaskModel newTaskModel,
TaskTemplate template,
java.io.Serializable inputMessage,
ReplyHandler replyHandler,
TaskException taskException)
This method is called after a "CREATE TASK" request was executed. |
void |
postCreateWorkItem(Task task,
int assignmentReason,
java.lang.String id,
TaskException taskException)
This method is called after a "CREATE WORKITEM" request was executed. |
void |
postDeleteTask(Task task,
TaskException taskException)
This method is called after a 2DELETE TASK" request was executed. |
void |
postDeleteWorkItem(Task task,
int assignmentReason,
java.lang.String id,
TaskException taskException)
This method is called after a "DELETE WORKITEM" request was executed. |
void |
postReplaceWorkItem(Task task,
int assignmentReason,
java.lang.String staffQuery,
TaskException taskException)
Deprecated. since v7.0 - this method is not used. |
void |
postRestartTask(Task task,
TaskException taskException)
This method is called after a "RESTART TASK" request was executed. |
void |
postResumeTask(Task task,
TaskException taskException)
This method is called after a "RESUME TASK" request was executed. |
void |
postSetBinaryCustomProperty(Task task,
java.lang.String propertyName,
java.lang.String dataType,
java.io.Serializable propertyValue,
TaskException taskException)
Deprecated. since v6.0.2 - use postSetBinaryCustomProperty(Task, BinaryCustomProperty) |
void |
postSetCustomProperty(Task task,
java.lang.String propertyName,
java.lang.String propertyValue,
TaskException taskException)
This method is called after a "SET CUSTOM PROPERTY" request was executed. |
void |
postSetFaultMessage(Task task,
java.lang.String faultName,
java.io.Serializable faultMessage,
TaskException taskException)
This method is called after a "SET FAULT MESSAGE" request was executed. |
void |
postSetOutputMessage(Task task,
java.io.Serializable outputMessage,
TaskException taskException)
This method is called after a "SET OUTPUT MESSAGE" request was executed. |
void |
postStartTask(Task task,
java.io.Serializable inputMessage,
ReplyHandler replyHandler,
TaskException taskException)
This method is called after a "START TASK" request was executed. |
void |
postStartTaskAsSubTask(Task task,
Task parentTask,
java.io.Serializable inputMessage,
TaskException taskException)
This method is called after a "START TASK AS SUBTASK" request was executed. |
void |
postSuspendTask(Task task,
TaskException taskException)
This method is called after a "SUSPEND TASK" request was executed. |
void |
postTerminateTask(Task task,
TaskException taskException)
This method is called after a "TERMINATE TASK" request was executed. |
void |
postTransferWorkItem(Task task,
int assignmentReason,
java.lang.String fromUserId,
java.lang.String toUserId,
TaskException taskException)
This method is called after a "TRANSFER WORKITEM" request was executed. |
void |
postUpdateInactiveTask(Task task,
java.io.Serializable inputMessage,
ReplyHandler replyHandler,
TaskException taskException)
This method is called after a "UPDATE INACTIVE TASK" request was executed. |
void |
postUpdateTask(Task task,
TaskException taskException)
This method is called after a "UPDATE TASK" request was executed. |
void |
preCallTask(Task task,
java.io.Serializable inputMessage)
This method is called before a "CALL TASK" request is executed. |
void |
preCancelClaim(Task task)
This method is called before a "CANCEL CLAIM" request is executed. |
void |
preClaim(Task task)
This method is called before a "CLAIM" request is executed. |
void |
preComplete(Task task)
This method is called before a "COMPLETE" request is executed. |
void |
preCompleteWithFollowOnTask(Task task,
Task previousTask)
This method is called before a "COMPLETE WITH FOLLOW-ON TASK" request is executed. |
void |
preCompleteWithNewFollowOnTask(TaskModel newTaskModel,
TaskTemplate template,
Task previousTask)
This method is called before a "COMPLETE WITH NEW FOLLOW-ON TASK" request is executed. |
void |
preCreateAndCallTask(TaskModel newTaskModel,
TaskTemplate template,
java.io.Serializable inputMessage)
This method is called before a "CREATE AND CALL TASK" request is executed. |
void |
preCreateAndStartTask(TaskModel newTaskModel,
TaskTemplate template,
java.io.Serializable inputMessage,
ReplyHandler replyHandler)
This method is called before a "CREATE AND START TASK" request is executed. |
void |
preCreateAndStartTaskAsSubTask(TaskModel newTaskModel,
TaskTemplate template,
Task parentTask,
java.io.Serializable inputMessage)
This method is called before a "CREATE AND START TASK AS SUBTASK" request is executed. |
void |
preCreateTask(TaskModel newTaskModel,
TaskTemplate template,
java.io.Serializable inputMessage,
ReplyHandler replyHandler)
This method is called before a "CREATE TASK" request is executed. |
void |
preCreateWorkItem(Task task,
int assignmentReason,
java.lang.String id)
This method is called before a "CREATE WORKITEM" request is executed. |
void |
preDeleteTask(Task task)
This method is called before a "DELETE TASK" request is executed. |
void |
preDeleteWorkItem(Task task,
int assignmentReason,
java.lang.String id)
This method is called before a "DELETE WORKITEM" request is executed. |
void |
preReplaceWorkItem(Task task,
int assignmentReason,
java.lang.String staffQuery)
Deprecated. since v7.0 - this method is not used. |
void |
preRestartTask(Task task)
This method is called before a "RESTART TASK" request is executed. |
void |
preResumeTask(Task task)
This method is called before a "RESUME TASK" request is executed. |
void |
preSetBinaryCustomProperty(Task task,
java.lang.String propertyName,
java.lang.String dataType,
java.io.Serializable propertyValue)
Deprecated. since v6.0.2 - use preSetBinaryCustomProperty(Task, BinaryCustomProperty) |
void |
preSetCustomProperty(Task task,
java.lang.String propertyName,
java.lang.String propertyValue)
This method is called before a "SET CUSTOM PROPERTY" request is executed. |
void |
preSetFaultMessage(Task task,
java.lang.String faultName,
java.io.Serializable faultMessage)
This method is called before a "SET FAULT MESSAGE" request is executed. |
void |
preSetOutputMessage(Task task,
java.io.Serializable outputMessage)
This method is called before a "SET OUTPUT MESSAGE" request is executed. |
void |
preStartTask(Task task,
java.io.Serializable inputMessage,
ReplyHandler replyHandler)
This method is called before a "START TASK" request is executed. |
void |
preStartTaskAsSubTask(Task task,
Task parentTask,
java.io.Serializable inputMessage)
This method is called before a "START TASK AS SUBTASK" request is executed. |
void |
preSuspendTask(Task task)
This method is called before a "SUSPEND TASK" request is executed. |
void |
preTerminateTask(Task task)
This method is called before a "TERMINATE TASK" request is executed. |
void |
preTransferWorkItem(Task task,
int assignmentReason,
java.lang.String fromUserId,
java.lang.String toUserId)
This method is called before a "TRANSFER WORKITEM" request is executed. |
void |
preUpdateInactiveTask(Task task,
TaskModel model,
java.io.Serializable inputMessage,
ReplyHandler replyHandler)
This method is called before a "UPDATE INACTIVE TASK" request is executed. |
void |
preUpdateTask(Task task)
This method is called before a "UPDATE TASK" request is executed. |
Field Detail |
---|
static final java.lang.String COPYRIGHT
Method Detail |
---|
void preCallTask(Task task, java.io.Serializable inputMessage) throws ApplicationVetoException
task
- The task to be called.inputMessage
- The input message - may be null.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postCallTask(Task task, java.io.Serializable inputMessage, java.io.Serializable returnMessage, TaskException taskException)
task
- task that has been 'called'inputMessage
- The input message - may be null.returnMessage
- The return message - may be null.taskException
- The TaskException that occurred or null if no exception occurred.void preCancelClaim(Task task) throws ApplicationVetoException
task
- The task that has been claimed and where the claim is to be canceled.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postCancelClaim(Task task, TaskException taskException)
task
- The task that has been claimed and where the claim was requested to be canceled.taskException
- The TaskException that occurred or null if no exception occurred.void preClaim(Task task) throws ApplicationVetoException
task
- The task to be claimed.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postClaim(Task task, java.lang.Object inputMessage, TaskException taskException)
task
- The task that was requested to be claimed.inputMessage
- The input message.taskException
- The TaskException that occurred or null if no exception occurred.void preComplete(Task task) throws ApplicationVetoException
task
- The task to be completed.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postComplete(Task task, java.io.Serializable outputMessage, java.lang.String faultName, java.io.Serializable faultMessage, TaskException taskException)
task
- The task that was requested to be completed.outputMessage
- The output message - may be null.faultName
- The fault name if a fault message is passed.faultMessage
- The fault message -may be null.taskException
- The TaskException that occurred or null if no exception occurred.void preCompleteWithFollowOnTask(Task task, Task previousTask) throws ApplicationVetoException
task
- The task to be started.previousTask
- The predecessor task to be completed.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postCompleteWithFollowOnTask(Task task, Task previousTask, TaskException taskException)
task
- The task that was requested to be started.previousTask
- The predecessor task that was requested to be completed.taskException
- The TaskException that occurred or null if no exception occurred.void preCompleteWithNewFollowOnTask(TaskModel newTaskModel, TaskTemplate template, Task previousTask) throws ApplicationVetoException
Note: Either the newTaskModel parameter or the template parameter must be set.
newTaskModel
- The task model from which a follow-on task is to be created.template
- The task template from which a follow-on task is to be created.previousTask
- The predecessor task that is to be completed.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postCompleteWithNewFollowOnTask(Task newTask, TaskModel newTaskModel, TaskTemplate template, Task previousTask, java.io.Serializable inputMessage, TaskException taskException)
Note: Either the newTaskModel parameter or the template parameter must be set.
newTask
- The task that was requested to be created.newTaskModel
- The task model data from which the task was requested to be created.template
- The task template from which the task was requested to be created.previousTask
- The the predecessor task that was requested to be completed.inputMessage
- An optional input message - may be null.taskException
- The TaskException that occurred or null if no exception occurred.void preCreateAndCallTask(TaskModel newTaskModel, TaskTemplate template, java.io.Serializable inputMessage) throws ApplicationVetoException
Note: Either the newTaskModel parameter or the template parameter must be set.
newTaskModel
- The task model data which the task is to be created.template
- The task template from which the new task is to be created.inputMessage
- An optional input message - may be null.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postCreateAndCallTask(Task task, TaskModel newTaskModel, TaskTemplate template, java.io.Serializable inputMessage, TaskException taskException)
Note: Either the newTaskModel parameter or the template parameter must be set.
task
- The task that was requested to be created and called.newTaskModel
- The task model data from which the task was requested to be created.template
- The task template from which the task was requested to be created.inputMessage
- An optional input message - may be null.taskException
- The TaskException that occurred or null if no exception occurred.void preCreateAndStartTask(TaskModel newTaskModel, TaskTemplate template, java.io.Serializable inputMessage, ReplyHandler replyHandler) throws ApplicationVetoException
Note: Either the newTaskModel parameter or the template parameter must be set.
newTaskModel
- The task model data which the task is to be created.template
- The task template from which the task is to be created.inputMessage
- An optional input message - may be null.replyHandler
- An optional reply handler - may be null.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postCreateAndStartTask(Task newTask, TaskModel newTaskModel, TaskTemplate template, java.io.Serializable inputMessage, ReplyHandler replyHandler, TaskException taskException)
Note: Either the newTaskModel parameter or the template parameter must be set.
newTask
- The task that was requested to be created and called.newTaskModel
- The task model data from which the task was requested to be created.template
- The task template from which the task was requested to be created.inputMessage
- An optional input message - may be null.replyHandler
- An optional reply handler - may be null.taskException
- The TaskException that occurred or null if no exception occurred.void preCreateAndStartTaskAsSubTask(TaskModel newTaskModel, TaskTemplate template, Task parentTask, java.io.Serializable inputMessage) throws ApplicationVetoException
Note: Either the newTaskModel parameter or the template parameter must be set.
newTaskModel
- The task model data which the subtask is to be created.template
- The task template from which the subtask is to be created.parentTask
- The parent task.inputMessage
- An optional input message - may be null.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postCreateAndStartTaskAsSubTask(Task newTask, TaskModel newTaskModel, TaskTemplate template, Task parentTask, java.io.Serializable inputMessage, TaskException taskException)
Note: Either the newTaskModel parameter or the template parameter must be set.
newTask
- The task that was requested to be created and started.newTaskModel
- The task model data from which the task was requested to be created.template
- The task template from which the task was requested to be created.parentTask
- The parent task.inputMessage
- An optional input message - may be null.taskException
- The TaskException that occurred or null if no exception occurred.void preCreateTask(TaskModel newTaskModel, TaskTemplate template, java.io.Serializable inputMessage, ReplyHandler replyHandler) throws ApplicationVetoException
newTaskModel
- The task model data which the task is to be created.template
- The task template from which the task is to be created.inputMessage
- An optional input message - may be null.replyHandler
- An optional reply handler - may be null.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postCreateTask(Task newTask, TaskModel newTaskModel, TaskTemplate template, java.io.Serializable inputMessage, ReplyHandler replyHandler, TaskException taskException)
newTask
- The task that was requested to be created.newTaskModel
- The task model data from which the task was requested to be created.template
- The task template from which the task was requested to be created.inputMessage
- An optional input message - may be null.replyHandler
- An optional reply handler - may be null.taskException
- The TaskException that occurred or null if no exception occurred.void preCreateWorkItem(Task task, int assignmentReason, java.lang.String id) throws ApplicationVetoException
task
- The task for which a work item is to be created.assignmentReason
- The reason why the work item is assigned.id
- The user or group that is to be associated.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postCreateWorkItem(Task task, int assignmentReason, java.lang.String id, TaskException taskException)
task
- The task for which a work item was requested to be created.assignmentReason
- The reason why the work item is assigned.id
- The user or group that is to be associated.taskException
- The TaskException that occurred or null if no exception occurred.void preDeleteTask(Task task) throws ApplicationVetoException
task
- The task that is to be deleted.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postDeleteTask(Task task, TaskException taskException)
task
- The task that was requested to be deleted.taskException
- The TaskException that occurred or null if no exception occurred.void preDeleteWorkItem(Task task, int assignmentReason, java.lang.String id) throws ApplicationVetoException
task
- The task for which a work item is to be deleted.assignmentReason
- The reason why the work item is assigned.id
- The user or group that is to be associated.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postDeleteWorkItem(Task task, int assignmentReason, java.lang.String id, TaskException taskException)
task
- The task for which a work item was requested to be deleted.assignmentReason
- The reason why the work item is assigned.id
- The user or group that is to be associated.taskException
- The TaskException that occurred or null if no exception occurred.void preReplaceWorkItem(Task task, int assignmentReason, java.lang.String staffQuery) throws ApplicationVetoException
task
- The task whose work item is to be replaced.assignmentReason
- The reason why the work item is assigned.staffQuery
- The staff query to replace the associated staff.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postReplaceWorkItem(Task task, int assignmentReason, java.lang.String staffQuery, TaskException taskException)
task
- The task whose work item was requested to be replaced.assignmentReason
- The reason why the work item is assigned.staffQuery
- The staff query to replace the associated staff. sontaskException
- The TaskException that occurred or null if no exception occurred.void preRestartTask(Task task) throws ApplicationVetoException
task
- The task that is to be restarted.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postRestartTask(Task task, TaskException taskException)
task
- The task that was requested to be restarted.taskException
- The TaskException that occurred or null if no exception occurred.void preResumeTask(Task task) throws ApplicationVetoException
task
- The task that is to be resumed.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postResumeTask(Task task, TaskException taskException)
task
- The task that was requested to be resumed.taskException
- The TaskException that occurred or null if no exception occurred.void preSetBinaryCustomProperty(Task task, java.lang.String propertyName, java.lang.String dataType, java.io.Serializable propertyValue) throws ApplicationVetoException
task
- The task for that the custom property is to be set.propertyName
- The property name.dataType
- The property data type.propertyValue
- The property value.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postSetBinaryCustomProperty(Task task, java.lang.String propertyName, java.lang.String dataType, java.io.Serializable propertyValue, TaskException taskException)
task
- The task for which the custom property was requested to be set.propertyName
- The property name.dataType
- The property data type.propertyValue
- The property value.taskException
- The TaskException that occurred or null if no exception occurred.void preSetCustomProperty(Task task, java.lang.String propertyName, java.lang.String propertyValue) throws ApplicationVetoException
task
- The task for which the custom property is to be set.propertyName
- The property name.propertyValue
- The property value.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postSetCustomProperty(Task task, java.lang.String propertyName, java.lang.String propertyValue, TaskException taskException)
task
- The task for which the custom property was requested to be set.propertyName
- The property name.propertyValue
- The property value.taskException
- The TaskException that occurred or null if no exception occurred.void preSetFaultMessage(Task task, java.lang.String faultName, java.io.Serializable faultMessage) throws ApplicationVetoException
task
- The task for which the fault message is to be set.faultName
- The fault name.faultMessage
- The fault message.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postSetFaultMessage(Task task, java.lang.String faultName, java.io.Serializable faultMessage, TaskException taskException)
task
- The task for which the fault message was requested to be set.faultName
- The fault name.faultMessage
- The fault message.taskException
- The TaskException that occurred or null if no exception occurred.void preSetOutputMessage(Task task, java.io.Serializable outputMessage) throws ApplicationVetoException
task
- The task for which the output message is to be set.outputMessage
- The output message.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postSetOutputMessage(Task task, java.io.Serializable outputMessage, TaskException taskException)
task
- The task for which the output message was requested to be set.outputMessage
- The output message.taskException
- The TaskException that occurred or null if no exception occurred.void preStartTask(Task task, java.io.Serializable inputMessage, ReplyHandler replyHandler) throws ApplicationVetoException
task
- The task to be started.inputMessage
- The optional input message - may be null.replyHandler
- An optional reply handler - may be null.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postStartTask(Task task, java.io.Serializable inputMessage, ReplyHandler replyHandler, TaskException taskException)
task
- The task that was requested to be started.inputMessage
- the optional input message - may be null.replyHandler
- An optiona reply handler - may be null.taskException
- The TaskException that occurred or null if no exception occurred.void preStartTaskAsSubTask(Task task, Task parentTask, java.io.Serializable inputMessage) throws ApplicationVetoException
task
- The task to be started.parentTask
- The parent task.inputMessage
- The optional input message - may be null.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postStartTaskAsSubTask(Task task, Task parentTask, java.io.Serializable inputMessage, TaskException taskException)
task
- The task that was requested to be started.parentTask
- The parent task.inputMessage
- The optional input message - may be null.taskException
- The TaskException that occurred or null if no exception occurred.void preSuspendTask(Task task) throws ApplicationVetoException
task
- The task to be suspended.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postSuspendTask(Task task, TaskException taskException)
task
- The task that was requested to be suspended.taskException
- The TaskException that occurred or null if no exception occurred.void preTerminateTask(Task task) throws ApplicationVetoException
task
- The task to be terminated.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postTerminateTask(Task task, TaskException taskException)
task
- The task that was requested to be terminated.taskException
- The TaskException that occurred or null if no exception occurred.void preTransferWorkItem(Task task, int assignmentReason, java.lang.String fromUserId, java.lang.String toUserId) throws ApplicationVetoException
task
- The task whose work item is to be transferred.assignmentReason
- The reason why the work item is assigned.fromUserId
- The user who is the owner of the work item.toUserId
- The user that is to be associated.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postTransferWorkItem(Task task, int assignmentReason, java.lang.String fromUserId, java.lang.String toUserId, TaskException taskException)
task
- The task whose work item was requested to be transferred.assignmentReason
- The reason why the work item is assigned.fromUserId
- The user who is the owner of the work item.toUserId
- The user that is to be associated.taskException
- The TaskException that occurred or null if no exception occurred.void preUpdateTask(Task task) throws ApplicationVetoException
task
- The task to be updated.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postUpdateTask(Task task, TaskException taskException)
task
- The task that was requested to be updated.taskException
- The TaskException that occurred or null if no exception occurred.void preUpdateInactiveTask(Task task, TaskModel model, java.io.Serializable inputMessage, ReplyHandler replyHandler) throws ApplicationVetoException
task
- The task to be updated.model
- The task model to be used for the update.inputMessage
- The optional input message - may be null.replyHandler
- An optional reply handler - may be null.
ApplicationVetoException
- if the subsequent execution is to be abortedvoid postUpdateInactiveTask(Task task, java.io.Serializable inputMessage, ReplyHandler replyHandler, TaskException taskException)
task
- The task that was requested to be updated.inputMessage
- The optional input message - may be null.replyHandler
- An optional reply handler - may be null.taskException
- The TaskException that occurred or null if no exception occurred.
|
IBM WebSphere Application ServerTM Release 7 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |