[exo-jcr-commits] exo-jcr SVN: r1936 - in jcr/trunk/exo.jcr.component.core/src: test/resources/conf/standalone and 1 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Mon Feb 22 11:22:00 EST 2010


Author: dkatayev
Date: 2010-02-22 11:21:59 -0500 (Mon, 22 Feb 2010)
New Revision: 1936

Added:
   jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/transaction/jbosscache/JBossTransactionsService.java
Removed:
   jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/transaction/jbosscache/ArjunaTransactionService.java
Modified:
   jcr/trunk/exo.jcr.component.core/src/test/resources/conf/standalone/cluster/test-configuration.xml
   jcr/trunk/exo.jcr.component.core/src/test/resources/conf/standalone/test-configuration-sjdbc.xml
   jcr/trunk/exo.jcr.component.core/src/test/resources/conf/standalone/test-configuration.xml
Log:
EXOJCR-532 ArjunaTransactionService renamed to JBossTransactionsService

Deleted: jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/transaction/jbosscache/ArjunaTransactionService.java
===================================================================
--- jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/transaction/jbosscache/ArjunaTransactionService.java	2010-02-22 14:52:26 UTC (rev 1935)
+++ jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/transaction/jbosscache/ArjunaTransactionService.java	2010-02-22 16:21:59 UTC (rev 1936)
@@ -1,66 +0,0 @@
-/*
- * Copyright (C) 2010 eXo Platform SAS.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.exoplatform.services.transaction.jbosscache;
-
-import com.arjuna.ats.jta.xa.XidImple;
-
-import org.exoplatform.container.xml.InitParams;
-import org.jboss.cache.transaction.TransactionManagerLookup;
-
-import javax.transaction.UserTransaction;
-import javax.transaction.xa.Xid;
-
-/**
- * Add the specific part for Arjuna
- * 
- * @author <a href="mailto:nicolas.filotto at exoplatform.com">Nicolas Filotto</a>
- * @version $Id$
- *
- */
-public class ArjunaTransactionService extends GenericTransactionService
-{
-   
-   public ArjunaTransactionService(TransactionManagerLookup tmLookup)
-   {
-      super(tmLookup);
-   }
-      
-   public ArjunaTransactionService(TransactionManagerLookup tmLookup, InitParams params)
-   {
-      super(tmLookup, params);      
-   }
-
-   /**
-    * {@inheritDoc} 
-    */
-   @Override
-   public Xid createXid()
-   {
-      return new XidImple();
-   }
-
-   /**
-    * {@inheritDoc} 
-    */
-   @Override
-   public UserTransaction getUserTransaction()
-   {
-      return com.arjuna.ats.jta.UserTransaction.userTransaction();
-   }
-}

Copied: jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/transaction/jbosscache/JBossTransactionsService.java (from rev 1935, jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/transaction/jbosscache/ArjunaTransactionService.java)
===================================================================
--- jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/transaction/jbosscache/JBossTransactionsService.java	                        (rev 0)
+++ jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/transaction/jbosscache/JBossTransactionsService.java	2010-02-22 16:21:59 UTC (rev 1936)
@@ -0,0 +1,66 @@
+/*
+ * Copyright (C) 2010 eXo Platform SAS.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.exoplatform.services.transaction.jbosscache;
+
+import com.arjuna.ats.jta.xa.XidImple;
+
+import org.exoplatform.container.xml.InitParams;
+import org.jboss.cache.transaction.TransactionManagerLookup;
+
+import javax.transaction.UserTransaction;
+import javax.transaction.xa.Xid;
+
+/**
+ * Add the specific part for Arjuna
+ * 
+ * @author <a href="mailto:nicolas.filotto at exoplatform.com">Nicolas Filotto</a>
+ * @version $Id$
+ *
+ */
+public class JBossTransactionsService extends GenericTransactionService
+{
+   
+   public JBossTransactionsService(TransactionManagerLookup tmLookup)
+   {
+      super(tmLookup);
+   }
+      
+   public JBossTransactionsService(TransactionManagerLookup tmLookup, InitParams params)
+   {
+      super(tmLookup, params);      
+   }
+
+   /**
+    * {@inheritDoc} 
+    */
+   @Override
+   public Xid createXid()
+   {
+      return new XidImple();
+   }
+
+   /**
+    * {@inheritDoc} 
+    */
+   @Override
+   public UserTransaction getUserTransaction()
+   {
+      return com.arjuna.ats.jta.UserTransaction.userTransaction();
+   }
+}

Modified: jcr/trunk/exo.jcr.component.core/src/test/resources/conf/standalone/cluster/test-configuration.xml
===================================================================
--- jcr/trunk/exo.jcr.component.core/src/test/resources/conf/standalone/cluster/test-configuration.xml	2010-02-22 14:52:26 UTC (rev 1935)
+++ jcr/trunk/exo.jcr.component.core/src/test/resources/conf/standalone/cluster/test-configuration.xml	2010-02-22 16:21:59 UTC (rev 1936)
@@ -201,7 +201,7 @@
    
   <component>
     <key>org.exoplatform.services.transaction.TransactionService</key>
-    <type>org.exoplatform.services.transaction.jbosscache.ArjunaTransactionService</type>
+    <type>org.exoplatform.services.transaction.jbosscache.JBossTransactionsService</type>
     <init-params>
       <value-param>
         <name>timeout</name>

Modified: jcr/trunk/exo.jcr.component.core/src/test/resources/conf/standalone/test-configuration-sjdbc.xml
===================================================================
--- jcr/trunk/exo.jcr.component.core/src/test/resources/conf/standalone/test-configuration-sjdbc.xml	2010-02-22 14:52:26 UTC (rev 1935)
+++ jcr/trunk/exo.jcr.component.core/src/test/resources/conf/standalone/test-configuration-sjdbc.xml	2010-02-22 16:21:59 UTC (rev 1936)
@@ -202,7 +202,7 @@
    
   <component>
     <key>org.exoplatform.services.transaction.TransactionService</key>
-    <type>org.exoplatform.services.transaction.jbosscache.ArjunaTransactionService</type>
+    <type>org.exoplatform.services.transaction.jbosscache.JBossTransactionsService</type>
     <init-params>
       <value-param>
         <name>timeout</name>

Modified: jcr/trunk/exo.jcr.component.core/src/test/resources/conf/standalone/test-configuration.xml
===================================================================
--- jcr/trunk/exo.jcr.component.core/src/test/resources/conf/standalone/test-configuration.xml	2010-02-22 14:52:26 UTC (rev 1935)
+++ jcr/trunk/exo.jcr.component.core/src/test/resources/conf/standalone/test-configuration.xml	2010-02-22 16:21:59 UTC (rev 1936)
@@ -202,7 +202,7 @@
    
   <component>
     <key>org.exoplatform.services.transaction.TransactionService</key>
-    <type>org.exoplatform.services.transaction.jbosscache.ArjunaTransactionService</type>
+    <type>org.exoplatform.services.transaction.jbosscache.JBossTransactionsService</type>
     <init-params>
       <value-param>
         <name>timeout</name>



More information about the exo-jcr-commits mailing list