[jbpm-commits] JBoss JBPM SVN: r6706 - jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/graph/exe.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Sep 30 09:39:44 EDT 2010


Author: bradsdavis
Date: 2010-09-30 09:39:44 -0400 (Thu, 30 Sep 2010)
New Revision: 6706

Modified:
   jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/graph/exe/ExecutionContext.java
Log:
The execution process should initialize the subprocess, if it exists, based on the token provided in the constructor.

Modified: jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/graph/exe/ExecutionContext.java
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/graph/exe/ExecutionContext.java	2010-09-30 11:48:29 UTC (rev 6705)
+++ jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/graph/exe/ExecutionContext.java	2010-09-30 13:39:44 UTC (rev 6706)
@@ -58,6 +58,7 @@
 
   public ExecutionContext(Token token) {
     this.token = token;
+    this.subProcessInstance = token.getSubProcessInstance();
   }
 
   public ExecutionContext(ExecutionContext other) {



More information about the jbpm-commits mailing list