com.ibm.task.spi
Interface NotificationEventHandlerPlugin
All known implementing classes:
- public interface NotificationEventHandlerPlugin
Notification events are produced when tasks are escalated. Use the NotificationEventHandlerPlugin service provider interface (SPI) to create plug-ins to get informed about these escalation events.
For example, you can use the SPI to create additional escalation work items or use your own e-mail (Java) application to send e-mals to specific people when the task is escalated.
This interface provides methods that are called when an notification event occurs.
Default Implementation Class:
NotificationEventHandler
Since:
6.0
Version:
6.00
Field Summary
Modifier and Type | Field and Description |
---|---|
|
COPYRIGHT
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
escalationNotification(Task task,Escalation escalation)
This method is called when an escalation of a task is fired.
|
Field Detail
COPYRIGHT
- static final java.lang.String COPYRIGHT
See Also:
Method Detail
escalationNotification
- void escalationNotification(Task task,
- Escalation escalation)
Parameters:
task
- The task that is escalated. escalation
- The escalation data.
Note: This method is only called when the escalation action was set to 'event'.