org.apache.shale.remoting.faces
Class RemotingPhaseListener

java.lang.Object
  extended by org.apache.shale.remoting.faces.RemotingPhaseListener
All Implemented Interfaces:
Serializable, EventListener, javax.faces.event.PhaseListener

public class RemotingPhaseListener
extends Object
implements javax.faces.event.PhaseListener

A JavaServer Faces PhaseListener that provides support for intercepting some incoming requests, and processing them separately from the standard Request Processing Lifecycle, without requiring explicit configuration (for example, of a Servlet or a Filter).

See Also:
Serialized Form

Constructor Summary
RemotingPhaseListener()
          Creates a new instance of RemotingPhaseListener.
 
Method Summary
 void afterPhase(javax.faces.event.PhaseEvent event)
          Perform interception processing activities after the specified phase processing has been performed.
 void beforePhase(javax.faces.event.PhaseEvent event)
          Perform interception processing activities before the specified phase processing has been performed.
 javax.faces.event.PhaseId getPhaseId()
          Return the identifier of the JavaServer Faces request processing lifecycle phase(s) that we are interested in.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RemotingPhaseListener

public RemotingPhaseListener()

Creates a new instance of RemotingPhaseListener.

Method Detail

afterPhase

public void afterPhase(javax.faces.event.PhaseEvent event)

Perform interception processing activities after the specified phase processing has been performed.

Specified by:
afterPhase in interface javax.faces.event.PhaseListener
Parameters:
event - PhaseEvent to be processed

beforePhase

public void beforePhase(javax.faces.event.PhaseEvent event)

Perform interception processing activities before the specified phase processing has been performed.

Specified by:
beforePhase in interface javax.faces.event.PhaseListener
Parameters:
event - PhaseEvent to be processed

getPhaseId

public javax.faces.event.PhaseId getPhaseId()

Return the identifier of the JavaServer Faces request processing lifecycle phase(s) that we are interested in.

Specified by:
getPhaseId in interface javax.faces.event.PhaseListener


Copyright © 2004-2007 Apache Software Foundation. All Rights Reserved.