Package com.impetus.kundera.lifecycle

Examples of com.impetus.kundera.lifecycle.NodeStateContext


     */
    @Test
    public void testMoveNodeToNextState()
    {
        NodeState nodeState = new TransientState();
        NodeStateContext node = new Node("1", PersonnelDTO.class, nodeState, pc, "1", null);
        nodeState.moveNodeToNextState(node, new ManagedState());
        Assert.assertEquals(ManagedState.class, node.getCurrentNodeState().getClass());
    }
View Full Code Here

TOP

Related Classes of com.impetus.kundera.lifecycle.NodeStateContext

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.