use of org.apache.cxf.endpoint.UpfrontConduitSelector in project cxf by apache.
the class JAXRSClientFactoryBean method getConduitSelector.
protected ConduitSelector getConduitSelector(Endpoint ep) {
ConduitSelector cs = getConduitSelector();
if (cs == null) {
cs = new UpfrontConduitSelector();
}
cs.setEndpoint(ep);
return cs;
}
Aggregations