Search in sources :

Example 1 with ReferenceParametersAssertingHandler

use of org.apache.cxf.ws.eventing.integration.notificationapi.assertions.ReferenceParametersAssertingHandler in project cxf by apache.

the class SimpleEventingIntegrationTest method createEndToEndpointWithReferenceParametersAssertion.

protected Server createEndToEndpointWithReferenceParametersAssertion(String address, ReferenceParametersType params) {
    JaxWsServerFactoryBean factory = new JaxWsServerFactoryBean();
    factory.setBus(bus);
    factory.setServiceBean(new TestingEndToEndpointImpl());
    factory.setAddress(address);
    factory.getHandlers().add(new ReferenceParametersAssertingHandler(params));
    factory.getHandlers().add(new WSAActionAssertingHandler(EventingConstants.ACTION_SUBSCRIPTION_END));
    return factory.create();
}
Also used : ReferenceParametersAssertingHandler(org.apache.cxf.ws.eventing.integration.notificationapi.assertions.ReferenceParametersAssertingHandler) TestingEndToEndpointImpl(org.apache.cxf.ws.eventing.integration.eventsink.TestingEndToEndpointImpl) WSAActionAssertingHandler(org.apache.cxf.ws.eventing.integration.notificationapi.assertions.WSAActionAssertingHandler) JaxWsServerFactoryBean(org.apache.cxf.jaxws.JaxWsServerFactoryBean)

Example 2 with ReferenceParametersAssertingHandler

use of org.apache.cxf.ws.eventing.integration.notificationapi.assertions.ReferenceParametersAssertingHandler in project cxf by apache.

the class SimpleEventingIntegrationTest method createEventSinkWithReferenceParametersAssertion.

protected Server createEventSinkWithReferenceParametersAssertion(String address, ReferenceParametersType params) {
    JaxWsServerFactoryBean factory = new JaxWsServerFactoryBean();
    factory.setBus(bus);
    factory.setServiceBean(new TestingEventSinkImpl());
    factory.setAddress(address);
    factory.getHandlers().add(new ReferenceParametersAssertingHandler(params));
    return factory.create();
}
Also used : ReferenceParametersAssertingHandler(org.apache.cxf.ws.eventing.integration.notificationapi.assertions.ReferenceParametersAssertingHandler) TestingEventSinkImpl(org.apache.cxf.ws.eventing.integration.eventsink.TestingEventSinkImpl) JaxWsServerFactoryBean(org.apache.cxf.jaxws.JaxWsServerFactoryBean)

Aggregations

JaxWsServerFactoryBean (org.apache.cxf.jaxws.JaxWsServerFactoryBean)2 ReferenceParametersAssertingHandler (org.apache.cxf.ws.eventing.integration.notificationapi.assertions.ReferenceParametersAssertingHandler)2 TestingEndToEndpointImpl (org.apache.cxf.ws.eventing.integration.eventsink.TestingEndToEndpointImpl)1 TestingEventSinkImpl (org.apache.cxf.ws.eventing.integration.eventsink.TestingEventSinkImpl)1 WSAActionAssertingHandler (org.apache.cxf.ws.eventing.integration.notificationapi.assertions.WSAActionAssertingHandler)1