Interface SessionAttributeActivationNotifier
- All Known Implementing Classes:
ContainerSessionAttributeActivationNotifier
public interface SessionAttributeActivationNotifier
A notifier of passivation/activation events.
- Author:
- Paul Ferraro
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final SessionAttributeActivationNotifierA silent notifier. -
Method Summary
Modifier and TypeMethodDescriptionvoidpostActivate(Object value) Notifies the specified attribute that it was activated, if interested.voidprePassivate(Object value) Notifies the specified attribute that it will be passivated, if interested.
-
Field Details
-
SILENT
A silent notifier.
-
-
Method Details
-
prePassivate
Notifies the specified attribute that it will be passivated, if interested.- Parameters:
value- an attribute value
-
postActivate
Notifies the specified attribute that it was activated, if interested.- Parameters:
value- an attribute value
-