UIX 2.2.16

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
 
Constructor Summary
UIXRequestEvent(Page page, BajaContext context)
          A render-time event for a page.
UIXRequestEvent(Page page, BajaContext context, PageEvent event)
          An event-handling-time event for a page.
 
Method Summary
 BajaContext getContext()
          Returns the current BajaContext.
 PageEvent getEvent()
          Returns the PageEvent being processed.
 Page getPage()
          Returns the page on which the event is firing.
 
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
 

Constructor Detail

UIXRequestEvent

public UIXRequestEvent(Page page,
                       BajaContext context)
A render-time event for a page.
Parameters:
page - the page to be rendered
context - 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 rendered
context - the current BajaContext
event - the PageEvent being processed
Method Detail

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.

UIX 2.2.16