Apache CXF API

org.apache.cxf.phase
Class AbstractPhaseInterceptor<T extends Message>

java.lang.Object
  extended by org.apache.cxf.phase.AbstractPhaseInterceptor<T>
All Implemented Interfaces:
Interceptor<T>, PhaseInterceptor<T>

public abstract class AbstractPhaseInterceptor<T extends Message>
extends java.lang.Object
implements PhaseInterceptor<T>


Constructor Summary
AbstractPhaseInterceptor(java.lang.String phase)
           
AbstractPhaseInterceptor(java.lang.String phase, boolean uniqueId)
           
AbstractPhaseInterceptor(java.lang.String i, java.lang.String p)
           
AbstractPhaseInterceptor(java.lang.String i, java.lang.String p, boolean uniqueId)
           
 
Method Summary
 void addAfter(java.util.Collection<java.lang.String> i)
           
 void addAfter(java.lang.String i)
           
 void addBefore(java.util.Collection<java.lang.String> i)
           
 void addBefore(java.lang.String i)
           
 java.util.Set<java.lang.String> getAfter()
          Returns a set of IDs specifying the interceptors that this interceptor should be placed after in the interceptor chain
 java.util.Set<java.lang.String> getBefore()
          Returns a set of IDs specifying the interceptors that this interceptor needs to be before in the inteceptor chain.
 java.lang.String getId()
          The ID of this interceptor.
 java.lang.String getPhase()
          The phase of this interceptor.
 void handleFault(T message)
          Called for all interceptors (in reverse order) on which handleMessage had been successfully invoked, when normal execution of the chain was aborted for some reason.
 boolean isGET(T message)
           
 void setAfter(java.util.Collection<java.lang.String> i)
           
 void setBefore(java.util.Collection<java.lang.String> i)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.apache.cxf.interceptor.Interceptor
handleMessage
 

Constructor Detail

AbstractPhaseInterceptor

public AbstractPhaseInterceptor(java.lang.String phase)

AbstractPhaseInterceptor

public AbstractPhaseInterceptor(java.lang.String i,
                                java.lang.String p)

AbstractPhaseInterceptor

public AbstractPhaseInterceptor(java.lang.String phase,
                                boolean uniqueId)

AbstractPhaseInterceptor

public AbstractPhaseInterceptor(java.lang.String i,
                                java.lang.String p,
                                boolean uniqueId)
Method Detail

setBefore

public void setBefore(java.util.Collection<java.lang.String> i)

setAfter

public void setAfter(java.util.Collection<java.lang.String> i)

addBefore

public void addBefore(java.util.Collection<java.lang.String> i)

addAfter

public void addAfter(java.util.Collection<java.lang.String> i)

addBefore

public void addBefore(java.lang.String i)

addAfter

public void addAfter(java.lang.String i)

getAfter

public final java.util.Set<java.lang.String> getAfter()
Description copied from interface: PhaseInterceptor
Returns a set of IDs specifying the interceptors that this interceptor should be placed after in the interceptor chain

Specified by:
getAfter in interface PhaseInterceptor<T extends Message>
Returns:
the ids of the interceptors

getBefore

public final java.util.Set<java.lang.String> getBefore()
Description copied from interface: PhaseInterceptor
Returns a set of IDs specifying the interceptors that this interceptor needs to be before in the inteceptor chain.

Specified by:
getBefore in interface PhaseInterceptor<T extends Message>
Returns:
the ids of the interceptors

getId

public final java.lang.String getId()
Description copied from interface: PhaseInterceptor
The ID of this interceptor.

Specified by:
getId in interface PhaseInterceptor<T extends Message>
Returns:
the id

getPhase

public final java.lang.String getPhase()
Description copied from interface: PhaseInterceptor
The phase of this interceptor.

Specified by:
getPhase in interface PhaseInterceptor<T extends Message>
Returns:
the phase

handleFault

public void handleFault(T message)
Description copied from interface: Interceptor
Called for all interceptors (in reverse order) on which handleMessage had been successfully invoked, when normal execution of the chain was aborted for some reason.

Specified by:
handleFault in interface Interceptor<T extends Message>

isGET

public boolean isGET(T message)

Apache CXF API

Apache CXF