Interface SessionAttributeActivationNotifier
- All Known Implementing Classes:
ImmutableSessionAttributeActivationNotifier
public interface SessionAttributeActivationNotifier
A notifier of passivation/activation events.
- Author:
- Paul Ferraro
-
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.
-
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
-