com.ibm.task.spi
Class NotificationEventHandler
- java.lang.Object
-
- com.ibm.task.spi.NotificationEventHandler
-
- All Implemented Interfaces:
- NotificationEventHandlerPlugin
public class NotificationEventHandler extends java.lang.Object implements NotificationEventHandlerPlugin
This class provides a default implementation for the Human Task ManagerNotificationEventHandlerPlugininterface.Note that it is best practice to inherit from this class instead of implementing the interface directly. This helps to ensure upward compatibility of your code.
- Since:
- 6.0.2
-
-
Field Summary
Fields Modifier and Type Field and Description static java.lang.StringCOPYRIGHT
-
Constructor Summary
Constructors Constructor and Description NotificationEventHandler()
-
Method Summary
Methods Modifier and Type Method and Description voidescalationNotification(Task task, Escalation escalation)This method is called when an escalation of a task is fired.
-
-
-
Field Detail
-
COPYRIGHT
public static final java.lang.String COPYRIGHT
- See Also:
- Constant Field Values
-
-
Method Detail
-
escalationNotification
public void escalationNotification(Task task, Escalation escalation)
This method is called when an escalation of a task is fired.Note: This method is only called when the escalation action was set to 'event'.
- Specified by:
escalationNotificationin interfaceNotificationEventHandlerPlugin- Parameters:
task- The task which is escalated.escalation- The escalation data.
-
-