oracle.panama.rt.event
Class SessionAdapter

java.lang.Object
  |
  +--oracle.panama.rt.event.SessionAdapter
All Implemented Interfaces:
SessionListener

public abstract class SessionAdapter
extends java.lang.Object
implements SessionListener

An abstract adapter class for receiving session events. The methods in this class are empty. This class exists as convenience for creating listener objects.

Since:
Oracle9i Application Server Wireless Edition

Constructor Summary
SessionAdapter()
           
 
Method Summary
TypeMethod
 void afterSession(SessionEvent event)
          The event notification after the end of session
 void beforeSession(SessionEvent event)
          The event notification before the start of session
 void sessionAuthenticated(SessionEvent event)
          The event notification when session is authenticated
 void sessionBegin(SessionEvent event)
          The event notification when session begins
 void sessionEnd(SessionEvent event)
          The event notification when session ends
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SessionAdapter

public SessionAdapter()
Method Detail

beforeSession

public void beforeSession(SessionEvent event)
                   throws AbortServiceException
The event notification before the start of session
Specified by:
beforeSession in interface SessionListener
Parameters:
an - event

sessionBegin

public void sessionBegin(SessionEvent event)
                  throws AbortServiceException
The event notification when session begins
Specified by:
sessionBegin in interface SessionListener
Parameters:
an - event

sessionAuthenticated

public void sessionAuthenticated(SessionEvent event)
                          throws AbortServiceException
The event notification when session is authenticated
Specified by:
sessionAuthenticated in interface SessionListener
Parameters:
an - event

sessionEnd

public void sessionEnd(SessionEvent event)
                throws AbortServiceException
The event notification when session ends
Specified by:
sessionEnd in interface SessionListener
Parameters:
an - event

afterSession

public void afterSession(SessionEvent event)
                  throws AbortServiceException
The event notification after the end of session
Specified by:
afterSession in interface SessionListener
Parameters:
an - event