Search in sources :

Example 1 with AbstractInDatabindingInterceptor

use of org.apache.cxf.interceptor.AbstractInDatabindingInterceptor in project tomee by apache.

the class EjbInterceptor method copyDataBindingInterceptors.

private static void copyDataBindingInterceptors(PhaseInterceptorChain newChain, InterceptorChain oldChain) {
    for (Interceptor interceptor : oldChain) {
        if (interceptor instanceof AbstractInDatabindingInterceptor) {
            log.debug("Added data binding interceptor: " + interceptor);
            newChain.add(interceptor);
        }
    }
}
Also used : AbstractInDatabindingInterceptor(org.apache.cxf.interceptor.AbstractInDatabindingInterceptor) AbstractInDatabindingInterceptor(org.apache.cxf.interceptor.AbstractInDatabindingInterceptor) SOAPHandlerInterceptor(org.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor) HolderInInterceptor(org.apache.cxf.jaxws.interceptors.HolderInInterceptor) OutgoingChainInterceptor(org.apache.cxf.interceptor.OutgoingChainInterceptor) Interceptor(org.apache.cxf.interceptor.Interceptor) LogicalHandlerInInterceptor(org.apache.cxf.jaxws.handler.logical.LogicalHandlerInInterceptor) MustUnderstandInterceptor(org.apache.cxf.binding.soap.interceptor.MustUnderstandInterceptor) WrapperClassInInterceptor(org.apache.cxf.jaxws.interceptors.WrapperClassInInterceptor) ServiceInvokerInterceptor(org.apache.cxf.interceptor.ServiceInvokerInterceptor)

Aggregations

MustUnderstandInterceptor (org.apache.cxf.binding.soap.interceptor.MustUnderstandInterceptor)1 AbstractInDatabindingInterceptor (org.apache.cxf.interceptor.AbstractInDatabindingInterceptor)1 Interceptor (org.apache.cxf.interceptor.Interceptor)1 OutgoingChainInterceptor (org.apache.cxf.interceptor.OutgoingChainInterceptor)1 ServiceInvokerInterceptor (org.apache.cxf.interceptor.ServiceInvokerInterceptor)1 LogicalHandlerInInterceptor (org.apache.cxf.jaxws.handler.logical.LogicalHandlerInInterceptor)1 SOAPHandlerInterceptor (org.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor)1 HolderInInterceptor (org.apache.cxf.jaxws.interceptors.HolderInInterceptor)1 WrapperClassInInterceptor (org.apache.cxf.jaxws.interceptors.WrapperClassInInterceptor)1