oracle.cabo.servlet.event
Class UIXRequestEvent
java.lang.Object
|
+--java.util.EventObject
|
+--oracle.cabo.servlet.event.UIXRequestEvent
- All Implemented Interfaces:
- java.io.Serializable
- public class UIXRequestEvent
- extends java.util.EventObject
Class for an event tracking the lifecycle of an individual request.
- See Also:
UIXRequestListener
, Serialized Form
Fields inherited from class java.util.EventObject |
source |
Methods inherited from class java.util.EventObject |
getSource, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
UIXRequestEvent
public UIXRequestEvent(Page page,
BajaContext context)
- A render-time event for a page.
- Parameters:
page
- the page to be renderedcontext
- the current BajaContext
UIXRequestEvent
public UIXRequestEvent(Page page,
BajaContext context,
PageEvent event)
- An event-handling-time event for a page.
- Parameters:
page
- the page to be renderedcontext
- the current BajaContextevent
- the PageEvent being processed
getPage
public Page getPage()
- Returns the page on which the event is firing.
getContext
public BajaContext getContext()
- Returns the current BajaContext.
getEvent
public PageEvent getEvent()
- Returns the PageEvent being processed. This is null
if the UIXRequestEvent is being delivered before or after
rendering.