You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by bo...@apache.org on 2006/11/21 01:32:03 UTC

svn commit: r477439 - in /incubator/ode/trunk/bpel-runtime/src: main/java/org/apache/ode/bpel/elang/xpath10/runtime/ main/java/org/apache/ode/bpel/engine/ main/java/org/apache/ode/bpel/runtime/ test/java/org/apache/ode/bpel/runtime/

Author: boisvert
Date: Mon Nov 20 16:32:02 2006
New Revision: 477439

URL: http://svn.apache.org/viewvc?view=rev&rev=477439
Log:
Cleanup and add missing serialVersionUID's

Modified:
    incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/elang/xpath10/runtime/BpelDocumentNavigator.java
    incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelProcessConfigurationException.java
    incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ACTIVITY.java
    incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/EH_EVENT.java
    incubator/ode/trunk/bpel-runtime/src/test/java/org/apache/ode/bpel/runtime/ActivityRecoveryTest.java

Modified: incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/elang/xpath10/runtime/BpelDocumentNavigator.java
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/elang/xpath10/runtime/BpelDocumentNavigator.java?view=diff&rev=477439&r1=477438&r2=477439
==============================================================================
--- incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/elang/xpath10/runtime/BpelDocumentNavigator.java (original)
+++ incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/elang/xpath10/runtime/BpelDocumentNavigator.java Mon Nov 20 16:32:02 2006
@@ -23,12 +23,15 @@
 
 class BpelDocumentNavigator extends DocumentNavigator {
 
-  private Node _documentRoot;
-  BpelDocumentNavigator(Node docRoot) {
-    _documentRoot = docRoot;
-  }
+	private static final long serialVersionUID = 6819182571668269841L;
 
-  public Object getDocumentNode(Object contextNode) {
-	  return _documentRoot;
-  }
+	private Node _documentRoot;
+
+	BpelDocumentNavigator(Node docRoot) {
+		_documentRoot = docRoot;
+	}
+
+	public Object getDocumentNode(Object contextNode) {
+		return _documentRoot;
+	}
 }

Modified: incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelProcessConfigurationException.java
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelProcessConfigurationException.java?view=diff&rev=477439&r1=477438&r2=477439
==============================================================================
--- incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelProcessConfigurationException.java (original)
+++ incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelProcessConfigurationException.java Mon Nov 20 16:32:02 2006
@@ -22,7 +22,9 @@
  * Exception indicating a problem with the BPEL process configuration.
  */
 class BpelProcessConfigurationException extends Exception {
-  public BpelProcessConfigurationException(String s) {
-    super(s);
-  }
+	private static final long serialVersionUID = 2556579467398008218L;
+
+	public BpelProcessConfigurationException(String s) {
+		super(s);
+	}
 }

Modified: incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ACTIVITY.java
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ACTIVITY.java?view=diff&rev=477439&r1=477438&r2=477439
==============================================================================
--- incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ACTIVITY.java (original)
+++ incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ACTIVITY.java Mon Nov 20 16:32:02 2006
@@ -29,8 +29,6 @@
 import org.apache.ode.bpel.o.OLink;
 import org.apache.ode.jacob.IndexedObject;
 
-import org.w3c.dom.Element;
-
 /**
  * Base template for activities.
  */

Modified: incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/EH_EVENT.java
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/EH_EVENT.java?view=diff&rev=477439&r1=477438&r2=477439
==============================================================================
--- incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/EH_EVENT.java (original)
+++ incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/EH_EVENT.java Mon Nov 20 16:32:02 2006
@@ -18,21 +18,28 @@
  */
 package org.apache.ode.bpel.runtime;
 
+import java.util.HashSet;
+import java.util.Set;
+
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 import org.apache.ode.bpel.common.CorrelationKey;
 import org.apache.ode.bpel.common.FaultException;
 import org.apache.ode.bpel.o.OEventHandler;
 import org.apache.ode.bpel.o.OScope;
-import org.apache.ode.bpel.runtime.channels.*;
+import org.apache.ode.bpel.runtime.channels.EventHandlerControlChannel;
+import org.apache.ode.bpel.runtime.channels.EventHandlerControlChannelListener;
+import org.apache.ode.bpel.runtime.channels.FaultData;
+import org.apache.ode.bpel.runtime.channels.ParentScopeChannel;
+import org.apache.ode.bpel.runtime.channels.ParentScopeChannelListener;
+import org.apache.ode.bpel.runtime.channels.PickResponseChannel;
+import org.apache.ode.bpel.runtime.channels.PickResponseChannelListener;
+import org.apache.ode.bpel.runtime.channels.TerminationChannel;
+import org.apache.ode.bpel.runtime.channels.TerminationChannelListener;
 import org.apache.ode.jacob.ChannelListener;
 import org.apache.ode.jacob.SynchChannel;
 import org.w3c.dom.Element;
 import org.w3c.dom.Node;
-
-import java.util.HashSet;
-import java.util.Set;
-import org.w3c.dom.Element;
 
 /**
  * Message event handler.

Modified: incubator/ode/trunk/bpel-runtime/src/test/java/org/apache/ode/bpel/runtime/ActivityRecoveryTest.java
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-runtime/src/test/java/org/apache/ode/bpel/runtime/ActivityRecoveryTest.java?view=diff&rev=477439&r1=477438&r2=477439
==============================================================================
--- incubator/ode/trunk/bpel-runtime/src/test/java/org/apache/ode/bpel/runtime/ActivityRecoveryTest.java (original)
+++ incubator/ode/trunk/bpel-runtime/src/test/java/org/apache/ode/bpel/runtime/ActivityRecoveryTest.java Mon Nov 20 16:32:02 2006
@@ -32,7 +32,6 @@
 import org.apache.ode.bpel.iapi.MessageExchangeContext;
 import org.apache.ode.bpel.iapi.MyRoleMessageExchange;
 import org.apache.ode.bpel.iapi.PartnerRoleMessageExchange;
-import org.apache.ode.bpel.o.OFailureHandling;
 import org.apache.ode.bpel.pmapi.BpelManagementFacade;
 import org.apache.ode.bpel.pmapi.TActivityInfo;
 import org.apache.ode.bpel.pmapi.TActivityStatus;