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
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
COPYRIGHT |
Modifier and Type | Method and Description |
---|---|
void |
escalationNotification(Task task,
Escalation escalation)
This method is called when an escalation of a task is fired.
|
static final java.lang.String COPYRIGHT
void escalationNotification(Task task, Escalation escalation)
Note: This method is only called when the escalation action was set to 'event'.
task
- The task that is escalated.escalation
- The escalation data.