You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by mr...@apache.org on 2008/05/22 00:33:10 UTC

svn commit: r658909 - /ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/ProcessAndInstanceManagementImpl.java

Author: mriou
Date: Wed May 21 15:33:09 2008
New Revision: 658909

URL: http://svn.apache.org/viewvc?rev=658909&view=rev
Log:
ODE 234

Modified:
    ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/ProcessAndInstanceManagementImpl.java

Modified: ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/ProcessAndInstanceManagementImpl.java
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/ProcessAndInstanceManagementImpl.java?rev=658909&r1=658908&r2=658909&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/ProcessAndInstanceManagementImpl.java (original)
+++ ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/ProcessAndInstanceManagementImpl.java Wed May 21 15:33:09 2008
@@ -737,8 +737,8 @@
         else if (__log.isDebugEnabled())
             __log.debug("fillProcessInfo: No files for " + pconf.getProcessId());
 
+        TProcessProperties properties = info.addNewProperties();
         if (custom.includeProcessProperties()) {
-            TProcessProperties properties = info.addNewProperties();
             for (Map.Entry<QName, Node> propEntry : pconf.getProperties().entrySet()) {
                 TProcessProperties.Property tprocProp = properties.addNewProperty();
                 tprocProp.setName(new QName(propEntry.getKey().getNamespaceURI(), propEntry.getKey().getLocalPart()));
@@ -747,11 +747,11 @@
                 Node node2append = processInfoDoc.importNode(propEntry.getValue(), true);
                 propNode.appendChild(node2append);
             }
-        }
+        } 
 
+        TEndpointReferences eprs = info.addNewEndpoints();
         OProcess oprocess = _server._engine.getOProcess(pconf.getProcessId());
         if (custom.includeEndpoints() && oprocess != null) {
-            TEndpointReferences eprs = info.addNewEndpoints();
             for (OPartnerLink oplink : oprocess.getAllPartnerLinks()) {
                 if (oplink.hasPartnerRole() && oplink.initializePartnerRole) {
                     // TODO: this is very uncool.