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()
           
 
Method Summary
 void addAfter(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 should be run after this interceptor.
 java.util.Set<java.lang.String> getBefore()
          Returns a set of IDs specifying the interceptors that should be run before this interceptor.
 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 postHandleMessage(T message)
          Clean up interceptor.
 void setAfter(java.util.Set<java.lang.String> a)
           
 void setBefore(java.util.Set<java.lang.String> b)
           
 void setId(java.lang.String i)
           
 void setPhase(java.lang.String p)
           
 
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()
Method Detail

addBefore

public void addBefore(java.lang.String i)

addAfter

public void addAfter(java.lang.String i)

getAfter

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

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

setAfter

public void setAfter(java.util.Set<java.lang.String> a)

getBefore

public java.util.Set<java.lang.String> getBefore()
Description copied from interface: PhaseInterceptor
Returns a set of IDs specifying the interceptors that should be run before this interceptor.

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

setBefore

public void setBefore(java.util.Set<java.lang.String> b)

getId

public 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

setId

public void setId(java.lang.String i)

getPhase

public 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

setPhase

public void setPhase(java.lang.String p)

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>

postHandleMessage

public void postHandleMessage(T message)
                       throws Fault
Description copied from interface: Interceptor
Clean up interceptor.

Specified by:
postHandleMessage in interface Interceptor<T extends Message>
Throws:
Fault

isGET

public boolean isGET(T message)

Apache CXF API

Apache CXF is an effort undergoing incubation at the Apache Software Foundation(ASF) and sponsored by the Apache Incubator PMC.