protected org.apache.cxf.jaxws.EndpointImpl createEndpointImpl(Bus bus,
String bindingId,
Object implementor,
WebServiceFeature ... features) {
if (isJaxWs22()) {
return new EndpointImpl(bus, implementor, bindingId, features);
}
//couldn't find the 2.2 stuff, assume 2.1 behavior
return super.createEndpointImpl(bus, bindingId, implementor, features);
}