Package org.openengsb.domain.example

Examples of org.openengsb.domain.example.ExampleDomainEvents


        getBundleContext().registerService(clazzes, logService, properties);

        LogEvent e = new LogEvent();
        e.setName("42");

        ExampleDomainEvents exampleEvents = getOsgiService(ExampleDomainEvents.class);
        // this should be routed through the domain, which forwards it to the workflow service
        exampleEvents.raiseEvent(e);

        assertThat(logService.isWasCalled(), is(true));
    }
View Full Code Here

TOP

Related Classes of org.openengsb.domain.example.ExampleDomainEvents

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.