You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by jm...@apache.org on 2007/02/26 18:47:44 UTC

svn commit: r511924 - /incubator/tuscany/java/sca/core-samples/standalone/loanapplication/src/main/java/loanapplication/provider/LoanService.java

Author: jmarino
Date: Mon Feb 26 09:47:43 2007
New Revision: 511924

URL: http://svn.apache.org/viewvc?view=rev&rev=511924
Log:
support end conversation

Modified:
    incubator/tuscany/java/sca/core-samples/standalone/loanapplication/src/main/java/loanapplication/provider/LoanService.java

Modified: incubator/tuscany/java/sca/core-samples/standalone/loanapplication/src/main/java/loanapplication/provider/LoanService.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/core-samples/standalone/loanapplication/src/main/java/loanapplication/provider/LoanService.java?view=diff&rev=511924&r1=511923&r2=511924
==============================================================================
--- incubator/tuscany/java/sca/core-samples/standalone/loanapplication/src/main/java/loanapplication/provider/LoanService.java (original)
+++ incubator/tuscany/java/sca/core-samples/standalone/loanapplication/src/main/java/loanapplication/provider/LoanService.java Mon Feb 26 09:47:43 2007
@@ -20,7 +20,7 @@
 
 import org.osoa.sca.annotations.Callback;
 import org.osoa.sca.annotations.Conversational;
-import org.osoa.sca.annotations.EndConversation;
+import org.osoa.sca.annotations.EndsConversation;
 
 import loanapplication.message.Application;
 
@@ -43,13 +43,13 @@
      * Called after the loan has been approved and when the client is read to complete the process. Calling this method
      * will end the conversation.
      */
-    @EndConversation
+    @EndsConversation
     void secureLoan();
 
     /**
      * Called to cancel a loan application. Calling this method will end the conversation.
      */
-    @EndConversation
+    @EndsConversation
     void cancel();
 
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org