use of org.apache.cxf.binding.corba.interceptors.CorbaStreamFaultInInterceptor in project cxf by apache.
the class CorbaBindingFactory method createBinding.
public Binding createBinding(BindingInfo bindingInfo) {
CorbaBinding binding = new CorbaBinding();
binding.getInFaultInterceptors().add(new CorbaStreamFaultInInterceptor());
binding.getOutFaultInterceptors().add(new CorbaStreamFaultOutInterceptor());
binding.getOutInterceptors().add(new BareOutInterceptor());
binding.getOutInterceptors().add(new CorbaStreamOutInterceptor());
binding.getInInterceptors().add(new BareInInterceptor());
binding.getInInterceptors().add(new CorbaStreamInInterceptor());
binding.setBindingInfo(bindingInfo);
return binding;
}
Aggregations