| java.lang.Object com.icesoft.faces.util.event.servlet.ContextEventRepeater
Method Summary | |
public static synchronized void | addListener(ContextEventListener listener) Adds the specified listener to this
ContextEventRepeater . | public synchronized void | contextDestroyed(ServletContextEvent event) Fires a new ContextDestroyedEvent , based on the received
event , to all registered listeners, and cleans itself
up. | public synchronized void | contextInitialized(ServletContextEvent event) | ContextEvent[] | getBufferedContextEvents() | public static synchronized void | iceFacesIdDisposed(HttpSession source, String iceFacesId) | public static synchronized void | iceFacesIdRetrieved(HttpSession source, String iceFacesId) Fires a new ICEfacesIDRetrievedEvent , with the specified
source and iceFacesId, to all registered
listeners. | public static synchronized void | removeListener(ContextEventListener listener) Removes the specified listener from this
ContextEventRepeater . | public synchronized void | sessionCreated(HttpSessionEvent event) | public synchronized void | sessionDestroyed(HttpSessionEvent event) Fires a new SessionDestroyedEvent , based on the received
event , to all registered listeners. | public static synchronized void | viewNumberRetrieved(HttpSession source, String icefacesID, int viewNumber) Fires a new ViewNumberRetrievedEvent , with the specified
source and viewNumber, to all registered
listeners. |
addListener | public static synchronized void addListener(ContextEventListener listener)(Code) | | Adds the specified listener to this
ContextEventRepeater .
Parameters: listener - the listener to be added. |
contextDestroyed | public synchronized void contextDestroyed(ServletContextEvent event)(Code) | | Fires a new ContextDestroyedEvent , based on the received
event , to all registered listeners, and cleans itself
up.
Parameters: event - the servlet context event. |
iceFacesIdRetrieved | public static synchronized void iceFacesIdRetrieved(HttpSession source, String iceFacesId)(Code) | | Fires a new ICEfacesIDRetrievedEvent , with the specified
source and iceFacesId, to all registered
listeners.
Parameters: source - the source of the event. Parameters: iceFacesId - the ICEfaces ID. |
removeListener | public static synchronized void removeListener(ContextEventListener listener)(Code) | | Removes the specified listener from this
ContextEventRepeater .
Parameters: listener - the listener to be removed. |
sessionDestroyed | public synchronized void sessionDestroyed(HttpSessionEvent event)(Code) | | Fires a new SessionDestroyedEvent , based on the received
event , to all registered listeners.
Parameters: event - the HTTP session event. |
viewNumberRetrieved | public static synchronized void viewNumberRetrieved(HttpSession source, String icefacesID, int viewNumber)(Code) | | Fires a new ViewNumberRetrievedEvent , with the specified
source and viewNumber, to all registered
listeners.
Parameters: source - the source of the event. Parameters: viewNumber - the view number. |
|
|