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);
}
}
}
Aggregations