oracle.jsp.event
Class JspScopeEvent

java.lang.Object
  |
  +--oracle.jsp.event.JspScopeEvent

public class JspScopeEvent
extends java.lang.Object

The JSP "out of scope" event.


Constructor Summary
JspScopeEvent(oracle.jsp.event.ServletContext sc, java.lang.Object container, java.lang.String name, int scope)
           
 
Method Summary
 oracle.jsp.event.ServletContext getApplication()
          Returns the JSP application (ServletContext) that this object is running in.
 java.lang.Object getContainer()
          Returns the JSP object that manages this scope.
 java.lang.String getName()
          Returns the attribute name that the object being notified is registered with.
 int getScope()
          Returns the JSP scope that is ending.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JspScopeEvent

public JspScopeEvent(oracle.jsp.event.ServletContext sc,
                     java.lang.Object container,
                     java.lang.String name,
                     int scope)
Method Detail

getContainer

public java.lang.Object getContainer()
Returns the JSP object that manages this scope. This is either the application, session, request, or page object on which your object is attached.

getName

public java.lang.String getName()
Returns the attribute name that the object being notified is registered with. If the JspScopeListener is not implemented by the object the notification pertains to, the listener calls the container's getAttribute method to acquire the object.

getScope

public int getScope()
Returns the JSP scope that is ending. The scope is represented by the four javax.servlet.jsp.PageContext constants PAGE_SCOPE, REQUEST_SCOPE, SESSION_SCOPE, and APPLICATION_SCOPE.

getApplication

public oracle.jsp.event.ServletContext getApplication()
Returns the JSP application (ServletContext) that this object is running in. The application is provided so clients can log necessary information.