[jbpm-commits] JBoss JBPM SVN: r5133 - jbpm4/trunk/modules/test-concurrent/src/main/java/org/jbpm/test/concurrent.

do-not-reply at jboss.org do-not-reply at jboss.org
Fri Jun 26 08:55:00 EDT 2009


Author: jbarrez
Date: 2009-06-26 08:55:00 -0400 (Fri, 26 Jun 2009)
New Revision: 5133

Modified:
   jbpm4/trunk/modules/test-concurrent/src/main/java/org/jbpm/test/concurrent/SynchronizableCommandExecutor.java
Log:
Fixed change jobId long -> String

Modified: jbpm4/trunk/modules/test-concurrent/src/main/java/org/jbpm/test/concurrent/SynchronizableCommandExecutor.java
===================================================================
--- jbpm4/trunk/modules/test-concurrent/src/main/java/org/jbpm/test/concurrent/SynchronizableCommandExecutor.java	2009-06-26 12:51:27 UTC (rev 5132)
+++ jbpm4/trunk/modules/test-concurrent/src/main/java/org/jbpm/test/concurrent/SynchronizableCommandExecutor.java	2009-06-26 12:55:00 UTC (rev 5133)
@@ -54,7 +54,7 @@
     private EnvironmentFactory environmentFactory;
   
     /** The database id of the job that will be executed */
-    private Long jobId;
+    private String jobId;
     
     /** The command that will be executed */
     private Command command;
@@ -89,7 +89,7 @@
      */
     public SynchronizableCommandExecutor(EnvironmentFactory environmentFactory, Job job) {
       this.environmentFactory = environmentFactory;
-      this.jobId = job.getDbid();
+      this.jobId = job.getId();
       this.threadBlocked = false;
       
       this.synchronizations = new ArrayList<CommandExecutionSynchronization>();




More information about the jbpm-commits mailing list