Package org.axonframework.saga

Examples of org.axonframework.saga.AbstractSagaManager


    @Test
    @DirtiesContext
    public void testSagaManagerWiring_suppressExceptionsFalse() throws NoSuchFieldException, IllegalAccessException {
        // this part should prove correct autowiring of the saga manager
        AbstractSagaManager sagaManager = beanFactory.getBean("sagaManagerNotSuppressingExceptions",
                                                              AbstractSagaManager.class);
        assertNotNull(sagaManager);

        final Field field = AbstractSagaManager.class.getDeclaredField("suppressExceptions");
        field.setAccessible(true);
View Full Code Here

TOP

Related Classes of org.axonframework.saga.AbstractSagaManager

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.