Package org.jbpm.context.log.variableinstance

Examples of org.jbpm.context.log.variableinstance.LongUpdateLog


    // // contextSession.updateProcessContextVariables(contextInstance);
   
    VariableCreateLog createLog = (VariableCreateLog)loggingInstance.getLogs(VariableCreateLog.class).get(0);
    assertEquals("a", createLog.getVariableInstance().getName());
   
    LongUpdateLog updateLog = (LongUpdateLog)loggingInstance.getLogs(LongUpdateLog.class).get(0);

    assertNull(updateLog.getOldValue());
    assertEquals(new Long(3), updateLog.getNewValue());
  }
View Full Code Here

TOP

Related Classes of org.jbpm.context.log.variableinstance.LongUpdateLog

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.