[jboss-svn-commits] JBL Code SVN: r30689 - in labs/jbosstm/trunk/ArjunaCore/arjuna/classes/com/arjuna/ats: internal/arjuna/thread and 1 other directory.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Dec 15 15:59:49 EST 2009


Author: mark.little at jboss.com
Date: 2009-12-15 15:59:49 -0500 (Tue, 15 Dec 2009)
New Revision: 30689

Removed:
   labs/jbosstm/trunk/ArjunaCore/arjuna/classes/com/arjuna/ats/internal/arjuna/thread/ThreadSpecificData.java
Modified:
   labs/jbosstm/trunk/ArjunaCore/arjuna/classes/com/arjuna/ats/arjuna/objectstore/jdbc/JDBCAccess.java
Log:
https://jira.jboss.org/jira/browse/JBTM-583

Modified: labs/jbosstm/trunk/ArjunaCore/arjuna/classes/com/arjuna/ats/arjuna/objectstore/jdbc/JDBCAccess.java
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/arjuna/classes/com/arjuna/ats/arjuna/objectstore/jdbc/JDBCAccess.java	2009-12-15 20:54:14 UTC (rev 30688)
+++ labs/jbosstm/trunk/ArjunaCore/arjuna/classes/com/arjuna/ats/arjuna/objectstore/jdbc/JDBCAccess.java	2009-12-15 20:59:49 UTC (rev 30689)
@@ -70,7 +70,6 @@
 
     /**
      * @return the name of the table to use for storing the state.
-     * @deprecated
      */
 
      public String tableName ();
@@ -78,7 +77,6 @@
     /**
      * @return <code>true</code> if the table is to be deleted and recreated
      * prior to use, <code>false</code> otherwise.
-     * @deprecated
      */
 
     public boolean dropTable ();

Deleted: labs/jbosstm/trunk/ArjunaCore/arjuna/classes/com/arjuna/ats/internal/arjuna/thread/ThreadSpecificData.java
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/arjuna/classes/com/arjuna/ats/internal/arjuna/thread/ThreadSpecificData.java	2009-12-15 20:54:14 UTC (rev 30688)
+++ labs/jbosstm/trunk/ArjunaCore/arjuna/classes/com/arjuna/ats/internal/arjuna/thread/ThreadSpecificData.java	2009-12-15 20:59:49 UTC (rev 30689)
@@ -1,113 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags.
- * See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- * This copyrighted material is made available to anyone wishing to use,
- * modify, copy, or redistribute it subject to the terms and conditions
- * of the GNU Lesser General Public License, v. 2.1.
- * This program is distributed in the hope that it will be useful, but WITHOUT A
- * 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,
- * v.2.1 along with this distribution; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- * MA  02110-1301, USA.
- *
- * (C) 2005-2006,
- * @author JBoss Inc.
- */
-/*
- * Copyright (C) 1998, 1999, 2000,
- *
- * Arjuna Solutions Limited,
- * Newcastle upon Tyne,
- * Tyne and Wear,
- * UK.
- *
- * $Id: ThreadSpecificData.java 2342 2006-03-30 13:06:17Z  $
- */
-
-package com.arjuna.ats.internal.arjuna.thread;
-
-/**
- * A thread specific data implementation. An instance of this class will
- * maintain data on behalf of each thread. One thread cannot gain access to
- * another thread's data.
- *
- * @author Mark Little (mark at arjuna.com)
- * @version $Id: ThreadSpecificData.java 2342 2006-03-30 13:06:17Z  $
- * @since JTS 1.0.
- * @deprecated
- */
-
-public class ThreadSpecificData
-{
-
-	/**
-	 * Create a new instance. Space will be allocated dynamically as required.
-	 */
-
-	public ThreadSpecificData ()
-	{
-		_table = new ThreadLocal();
-	}
-
-	/**
-	 * Create a new instance with the specified size. Space will be increased
-	 * dynamically as required.
-	 *
-	 * @deprecated No longer supported.
-	 */
-
-	public ThreadSpecificData (int v)
-	{
-		_table = new ThreadLocal();
-	}
-
-	/**
-	 * Associate the specified data with the current thread.
-	 */
-
-	public void setSpecific (Object o)
-	{
-		_table.set(o);
-	}
-
-	/**
-	 * Return the data associated with the current thread. If no association has
-	 * occurred then null will be returned. Obviously if null was legally
-	 * associated with the thread then it is not possible to determine whether
-	 * data was stored.
-	 */
-
-	public Object getSpecific ()
-	{
-		return _table.get();
-	}
-
-	/**
-	 * Returns whether data has been associated with the current thread.
-	 */
-
-	public boolean hasSpecific ()
-	{
-		if (_table.get() != null)
-			return true;
-		else
-			return false;
-	}
-
-	/**
-	 * Remove the data associated with the current thread.
-	 */
-
-	public void removeSpecific ()
-	{
-		_table.set(null);
-	}
-
-	private ThreadLocal _table;
-
-}



More information about the jboss-svn-commits mailing list