Files
Brainstorm/Foundation Web Interfaces/src/com/foundation/web/interfaces/ISessionLifecycleAware.java

11 lines
366 B
Java

package com.foundation.web.interfaces;
/**
* An interface implemented by objects stored in the SessionData's application data mapping (as the value) when the object wants notification that the session has been released.
*/
public interface ISessionLifecycleAware {
/**
* Called when the session is released.
*/
public void release();
}//ISessionLifecycleAware//