use of org.apache.camel.component.cxf.CxfEndpoint in project camel by apache.
the class CxfEndpointUtilsTest method testCheckServiceClassWithTheEndpoint.
@Test
public void testCheckServiceClassWithTheEndpoint() throws Exception {
CxfEndpoint endpoint = createEndpoint(getNoServiceClassURI());
assertNull(endpoint.getServiceClass());
}
use of org.apache.camel.component.cxf.CxfEndpoint in project wildfly-camel by wildfly-extras.
the class CXFWSSecureConsumerIntegrationTest method createCxfEndpoint.
private CxfEndpoint createCxfEndpoint(String endpointUrl, CxfComponent component) throws Exception {
CxfEndpoint cxfEndpoint = new CxfEndpoint(endpointUrl, component);
cxfEndpoint.setServiceClass(Endpoint.class.getName());
return cxfEndpoint;
}
Aggregations