[jboss-svn-commits] JBL Code SVN: r32904 - in labs/jbosstm/trunk/XTS/WSAS/classes/com/arjuna: mwlabs/wsas/common and 1 other directory.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon May 17 09:37:51 EDT 2010


Author: adinn
Date: 2010-05-17 09:37:50 -0400 (Mon, 17 May 2010)
New Revision: 32904

Removed:
   labs/jbosstm/trunk/XTS/WSAS/classes/com/arjuna/mw/wsas/common/Environment.java
   labs/jbosstm/trunk/XTS/WSAS/classes/com/arjuna/mwlabs/wsas/common/Initialiser.java
Log:
deleted redundant classes

Deleted: labs/jbosstm/trunk/XTS/WSAS/classes/com/arjuna/mw/wsas/common/Environment.java
===================================================================
--- labs/jbosstm/trunk/XTS/WSAS/classes/com/arjuna/mw/wsas/common/Environment.java	2010-05-17 12:32:51 UTC (rev 32903)
+++ labs/jbosstm/trunk/XTS/WSAS/classes/com/arjuna/mw/wsas/common/Environment.java	2010-05-17 13:37:50 UTC (rev 32904)
@@ -1,51 +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) 2002,
- *
- * Arjuna Technologies Limited,
- * Newcastle upon Tyne,
- * Tyne and Wear,
- * UK.
- *
- * $Id: Environment.java,v 1.5 2004/03/15 13:24:59 nmcl Exp $
- */
-
-package com.arjuna.mw.wsas.common;
-
-/**
- */
-
-public class Environment
-{
-
-    public static final String ACTIVITY_TIMEOUT = "com.arjuna.mw.wsas.activityTimeout";
-    public static final String REAPER_MODE = "com.arjuna.mw.wsas.reaperMode";
-    public static final String REAPER_TIMEOUT = "com.arjuna.mw.wsas.reaperTimeout";
-
-    // to remove
-
-    public static final String DEPLOYMENT_CONTEXT = "com.arjuna.mw.wsas.deploymentContext";
-    
-    public static final String REPLAY_TIMEOUT = "com.arjuna.mw.wsas.replayTimeout" ;
-    
-    public static final String REPLAY_COUNT = "com.arjuna.mw.wsas.replayCount" ;
-}

Deleted: labs/jbosstm/trunk/XTS/WSAS/classes/com/arjuna/mwlabs/wsas/common/Initialiser.java
===================================================================
--- labs/jbosstm/trunk/XTS/WSAS/classes/com/arjuna/mwlabs/wsas/common/Initialiser.java	2010-05-17 12:32:51 UTC (rev 32903)
+++ labs/jbosstm/trunk/XTS/WSAS/classes/com/arjuna/mwlabs/wsas/common/Initialiser.java	2010-05-17 13:37:50 UTC (rev 32904)
@@ -1,82 +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) 2002,
- *
- * Arjuna Technologies Limited,
- * Newcastle upon Tyne,
- * Tyne and Wear,
- * UK.
- *
- * $Id: Initialiser.java,v 1.2 2005/03/10 15:37:01 nmcl Exp $
- */
-
-package com.arjuna.mwlabs.wsas.common;
-
-import com.arjuna.mw.wsas.logging.wsasLogger;
-
-import com.arjuna.mw.wsas.common.Environment;
-
-/**
- * @author Mark Little (mark.little at arjuna.com)
- * @version $Id: Initialiser.java,v 1.2 2005/03/10 15:37:01 nmcl Exp $
- * @since 1.0.
- */
-
-public class Initialiser
-{
-
-    /**
-     * @message com.arjuna.mwlabs.wsas.common.Initialiser_1 [com.arjuna.mwlabs.wsas.common.Initialiser_1] - Activity timeout format incorrect: 
-     */
-
-    public static final synchronized void initialise ()
-    {
-	if (!_done)
-	{
-	    try
-	    {
-		String timeout = System.getProperty(Environment.ACTIVITY_TIMEOUT);
-		
-		try
-		{
-		    Integer l = new Integer(timeout);
-		    _defaultTimeout = l.intValue();
-		}
-		catch (NumberFormatException e)
-		{
-		    wsasLogger.arjLoggerI18N.warn("com.arjuna.mwlabs.wsas.common.Initialiser_1",
-						  new Object[]{e});
-		}
-	    }
-	    catch (Exception ex)
-	    {
-	    }
-	    
-	    _done = true;
-	}
-    }
-
-    private static boolean _done = false;
-    private static int     _defaultTimeout = 0;
-    
-}
-



More information about the jboss-svn-commits mailing list