use of org.apache.cxf.ws.eventing.integration.eventsink.TestingWrappedEventSinkImpl in project cxf by apache.
the class SimpleEventingIntegrationTest method createWrappedEventSink.
protected Server createWrappedEventSink(String address) {
JaxWsServerFactoryBean factory = new JaxWsServerFactoryBean();
factory.setBus(bus);
factory.setServiceBean(new TestingWrappedEventSinkImpl());
factory.setAddress(address);
return factory.create();
}
Aggregations