Package org.axonframework.domain

Examples of org.axonframework.domain.AbstractAggregateRoot


        testSubject.add(new JpaAggregate("hi"));
    }

    @Test(expected = IllegalArgumentException.class)
    public void testAggregateTypeVerification_WrongType() throws Exception {
        testSubject.add(new AbstractAggregateRoot() {
            @Override
            public Object getIdentifier() {
                return "1";
            }
        });
View Full Code Here

TOP

Related Classes of org.axonframework.domain.AbstractAggregateRoot

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.