[jboss-svn-commits] JBL Code SVN: r35652 - labs/jbosstm/trunk/XTS/sar/tests/src/org/jboss/jbossts/xts/servicetests/service/recovery.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Oct 21 11:24:51 EDT 2010


Author: adinn
Date: 2010-10-21 11:24:51 -0400 (Thu, 21 Oct 2010)
New Revision: 35652

Modified:
   labs/jbosstm/trunk/XTS/sar/tests/src/org/jboss/jbossts/xts/servicetests/service/recovery/TestATRecoveryModule.java
   labs/jbosstm/trunk/XTS/sar/tests/src/org/jboss/jbossts/xts/servicetests/service/recovery/TestBARecoveryModule.java
Log:
updated service recovery module to include implementation of  newly added  endScan routine

Modified: labs/jbosstm/trunk/XTS/sar/tests/src/org/jboss/jbossts/xts/servicetests/service/recovery/TestATRecoveryModule.java
===================================================================
--- labs/jbosstm/trunk/XTS/sar/tests/src/org/jboss/jbossts/xts/servicetests/service/recovery/TestATRecoveryModule.java	2010-10-21 15:23:07 UTC (rev 35651)
+++ labs/jbosstm/trunk/XTS/sar/tests/src/org/jboss/jbossts/xts/servicetests/service/recovery/TestATRecoveryModule.java	2010-10-21 15:24:51 UTC (rev 35652)
@@ -9,7 +9,7 @@
 import java.io.ObjectInputStream;
 
 /**
- * Application-specific WS-AT participant recovery manager for demo application, This class
+ * Application-specific WS-AT participant recovery manager for service test application, This class
  * is responsible for recreating application-specific durable participants from records
  * logged at prepare time.
  */
@@ -21,13 +21,13 @@
     private static TestATRecoveryModule theRecoveryModule = null;
 
     /**
-     * a count of how many xts demo services are currently installed
+     * a count of how many xts test services are currently installed
      */
     private static int serviceCount = 0;
 
     /**
-     * called during deployment of an xts-demo web service to ensure the recovery module for the
-     * demo is installed whenever any of the services is active
+     * called during deployment of a test service to ensure the recovery module for the
+     * test service is installed whenever any of the services is active
      */
     public static void register()
     {
@@ -41,8 +41,8 @@
     }
 
     /**
-     * called during undeployment of an xts-demo web service to ensure the recovery module for
-     * the demo is deinstalled once none of the services is active
+     * called during undeployment of a test service to ensure the recovery module for
+     * the test is deinstalled once none of the services is active
      */
     public static void unregister()
     {
@@ -98,4 +98,8 @@
         }
         return null;
     }
+
+    public void endScan()
+    {
+    }
 }
\ No newline at end of file

Modified: labs/jbosstm/trunk/XTS/sar/tests/src/org/jboss/jbossts/xts/servicetests/service/recovery/TestBARecoveryModule.java
===================================================================
--- labs/jbosstm/trunk/XTS/sar/tests/src/org/jboss/jbossts/xts/servicetests/service/recovery/TestBARecoveryModule.java	2010-10-21 15:23:07 UTC (rev 35651)
+++ labs/jbosstm/trunk/XTS/sar/tests/src/org/jboss/jbossts/xts/servicetests/service/recovery/TestBARecoveryModule.java	2010-10-21 15:24:51 UTC (rev 35652)
@@ -13,7 +13,7 @@
 import java.io.ObjectInputStream;
 
 /**
- * Application-specific WS-AT participant recovery manager for demo application, This class
+ * Application-specific WS-AT participant recovery manager for service test application, This class
  * is responsible for recreating application-specific durable participants from records
  * logged at prepare time.
  */
@@ -30,8 +30,8 @@
     private static int serviceCount = 0;
 
     /**
-     * called during deployment of an xts-demo web service to ensure the recovery module for the
-     * demo is installed whenever any of the services is active
+     * called during deployment of a test service to ensure the recovery module for the
+     * test is installed whenever any of the services is active
      */
     public static void register()
     {
@@ -45,8 +45,8 @@
     }
 
     /**
-     * called during undeployment of an xts-demo web service to ensure the recovery module for
-     * the demo is deinstalled once none of the services is active
+     * called during undeployment of a test service to ensure the recovery module for
+     * the test is deinstalled once none of the services is active
      */
     public static void unregister()
     {
@@ -101,4 +101,8 @@
         
         return null;
     }
+
+    public void endScan()
+    {
+    }
 }
\ No newline at end of file



More information about the jboss-svn-commits mailing list