use of org.apache.cxf.interceptor.OutgoingChainInterceptor in project cxf by apache.
the class AbstractServiceFactoryBean method initializeDefaultInterceptors.
protected void initializeDefaultInterceptors() {
service.getInInterceptors().add(new ServiceInvokerInterceptor());
service.getInInterceptors().add(new OutgoingChainInterceptor());
service.getInInterceptors().add(new OneWayProcessorInterceptor());
}
Aggregations