| org.apache.cxf.interceptor.Interceptor
Interceptor | public interface Interceptor (Code) | | |
Method Summary | |
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. | void | handleMessage(T message) Intercepts a message. |
handleFault | void handleFault(T message)(Code) | | 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.
Parameters: message - |
handleMessage | void handleMessage(T message) throws Fault(Code) | | Intercepts a message.
Interceptors need NOT invoke handleMessage or handleFault
on the next interceptor - the interceptor chain will
take care of this.
Parameters: message - |
|
|