Interface IBMSessionExt

  • All Superinterfaces:
    java.io.Externalizable, javax.servlet.http.HttpSession, IBMSession, java.io.Serializable

    public interface IBMSessionExt
    extends IBMSession
    The IBMSessionExt interface extends the javax.servlet.http.HttpSession interface of the Servlet API to
  • Invalidate all sessions with the same session id as the current session.

    WebSphere implementation of http session object implements this interface.

    Example code:

    IBMSessionExt sessExt = (IBMSessionExt)request.getSession();
    sessExt.invalidateAll(true);