Interface SessionAttributeActivationNotifier

All Superinterfaces:
AutoCloseable
All Known Implementing Classes:
ImmutableSessionAttributeActivationNotifier

public interface SessionAttributeActivationNotifier extends AutoCloseable
A notifier of passivation/activation events.
Author:
Paul Ferraro
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    void
    Notifies the specified attribute that it was activated, if interested.
    void
    Notifies the specified attribute that it will be passivated, if interested.
  • Method Details

    • prePassivate

      void prePassivate(Object value)
      Notifies the specified attribute that it will be passivated, if interested.
      Parameters:
      value - an attribute value
    • postActivate

      void postActivate(Object value)
      Notifies the specified attribute that it was activated, if interested.
      Parameters:
      value - an attribute value
    • close

      void close()
      Specified by:
      close in interface AutoCloseable