Package com.ibm.wsspi.adaptable.module
Interface Notifier.NotificationListener
- 
- Enclosing interface:
- Notifier
 
 public static interface Notifier.NotificationListenerImplemented by people wanting notifications of changes within the notification object.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidnotifyEntryChange(Notifier.Notification added, Notifier.Notification removed, Notifier.Notification modified)Called to inform the listener that changes have happened to entries.
 
- 
- 
- 
Method Detail- 
notifyEntryChangevoid notifyEntryChange(Notifier.Notification added, Notifier.Notification removed, Notifier.Notification modified) Called to inform the listener that changes have happened to entries.Each notification contains the container it's associated paths are intended for, in case a listener is registered to multiple containers. 
 Paths within the notifications will always be absolute, and will never contain the '!' prefix used when registering to request non-recursive registrations.
 The 3 parameters will never be null.- Parameters:
- added-
- removed-
- modified-
 
 
- 
 
-