Author: mszefler
Date: Wed Aug 30 07:29:46 2006
New Revision: 438494
URL: http://svn.apache.org/viewvc?rev=438494&view=rev
Log:
Moved from bpel-api
Added:
incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/MessageExchangeInterceptor.java
(contents, props changed)
- copied, changed from r437700,
incubator/ode/trunk/bpel-api/src/main/java/org/apache/ode/bpel/iapi/MessageExchangeInterceptor.java
Copied:
incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/MessageExchangeInterceptor.java
(from r437700,
incubator/ode/trunk/bpel-api/src/main/java/org/apache/ode/bpel/iapi/MessageExchangeInterceptor.java)
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/MessageExchangeInterceptor.java?p2=incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/MessageExchangeInterceptor.java&p1=incubator/ode/trunk/bpel-api/src/main/java/org/apache/ode/bpel/iapi/MessageExchangeInterceptor.java&r1=437700&r2=438494&rev=438494&view=diff
==============================================================================
---
incubator/ode/trunk/bpel-api/src/main/java/org/apache/ode/bpel/iapi/MessageExchangeInterceptor.java
(original)
+++
incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/MessageExchangeInterceptor.java
Wed Aug 30 07:29:46 2006
@@ -16,42 +16,51 @@
* specific language governing permissions and limitations
* under the License.
*/
-package org.apache.ode.bpel.iapi;
+package org.apache.ode.bpel.engine;
+
+import org.apache.ode.bpel.iapi.MessageExchange;
+import org.apache.ode.bpel.iapi.MyRoleMessageExchange;
/**
- * Hook into the BPEL server that enables intercepting of
- * message exchange invocation.
+ * Hook into the BPEL server that enables intercepting of message exchange
+ * invocation.
+ *
* @author mszefler
- *
+ *
*/
public interface MessageExchangeInterceptor {
- /**
- * Called when the BPEL server is invoked, before any
- * attempt to route the message exchange to a process.
- * @param mex message exchange
- * @return <code>true</code> if message exchange processing
- * should continue, <code>false</code> otherwise
- */
- boolean onBpelServerInvoked(MyRoleMessageExchange mex);
-
- /**
- * Called when the BPEL server is invoked, after the message
- * exchange has been routed to the process.
- * @param mex message exchange
- * @return <code>true</code> if message exchange processing
- * should continue, <code>false</code> otherwise
- */
- boolean onProcessInvoked(MyRoleMessageExchange mex);
-
- /**
- * Called when the BPEL server is invoked, before any
- * attempt to route the message exchange to a process.
- * @param mex message exchange
- * @return <code>true</code> if message exchange processing
- * should continue, <code>false</code> otherwise
- */
- boolean onPartnerInvoked(MessageExchange mex);
-
-
+ /**
+ * Called when the BPEL server is invoked, before any attempt to route the
+ * message exchange to a process.
+ *
+ * @param mex
+ * message exchange
+ * @return <code>true</code> if message exchange processing should
+ * continue, <code>false</code> otherwise
+ */
+ boolean onBpelServerInvoked(MyRoleMessageExchange mex);
+
+ /**
+ * Called when the BPEL server is invoked, after the message exchange has
+ * been routed to the process.
+ *
+ * @param mex
+ * message exchange
+ * @return <code>true</code> if message exchange processing should
+ * continue, <code>false</code> otherwise
+ */
+ boolean onProcessInvoked(MyRoleMessageExchange mex);
+
+ /**
+ * Called when the BPEL server is invoked, before any attempt to route the
+ * message exchange to a process.
+ *
+ * @param mex
+ * message exchange
+ * @return <code>true</code> if message exchange processing should
+ * continue, <code>false</code> otherwise
+ */
+ boolean onPartnerInvoked(MessageExchange mex);
+
}
Propchange:
incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/MessageExchangeInterceptor.java
------------------------------------------------------------------------------
svn:eol-style = native