[jboss-cvs] JBossAS SVN: r60318 - in trunk: server/src/main/org/jboss/naming and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Feb 6 00:44:57 EST 2007


Author: scott.stark at jboss.org
Date: 2007-02-06 00:44:57 -0500 (Tue, 06 Feb 2007)
New Revision: 60318

Added:
   trunk/naming/src/main/org/jboss/naming/NamingContextFactory.java
Removed:
   trunk/server/src/main/org/jboss/naming/NamingContextFactory.java
Log:
JBAS-2865, missed the move of the NamingContextFactory

Copied: trunk/naming/src/main/org/jboss/naming/NamingContextFactory.java (from rev 60317, trunk/server/src/main/org/jboss/naming/NamingContextFactory.java)
===================================================================
--- trunk/naming/src/main/org/jboss/naming/NamingContextFactory.java	                        (rev 0)
+++ trunk/naming/src/main/org/jboss/naming/NamingContextFactory.java	2007-02-06 05:44:57 UTC (rev 60318)
@@ -0,0 +1,51 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2005, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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.jboss.naming;
+
+import java.util.Hashtable;
+import javax.naming.Context;
+import javax.naming.NamingException;
+
+/** A variation of the org.jnp.interfaces.NamingContextFactory
+ * InitialContextFactory implementation that maintains the last envrionment
+ * used to create an InitialContext in a thread local variable for
+ * access within the scope of the InitialContext. This can be used by
+ * the EJB handles to save the context that should be used to perform the
+ * looks when the handle is restored.
+ *
+ * @see org.jnp.interfaces.NamingContextFactory
+ *
+ * @author Scott.Stark at jboss.org
+ * @version $Revision$
+ */
+public class NamingContextFactory extends org.jnp.interfaces.NamingContextFactory
+{
+   public static final ThreadLocal lastInitialContextEnv = new ThreadLocal();
+
+   // InitialContextFactory implementation --------------------------
+   public Context getInitialContext(Hashtable env)
+         throws NamingException
+   {
+      lastInitialContextEnv.set(env);
+      return super.getInitialContext(env);
+   }
+}

Deleted: trunk/server/src/main/org/jboss/naming/NamingContextFactory.java
===================================================================
--- trunk/server/src/main/org/jboss/naming/NamingContextFactory.java	2007-02-06 05:22:04 UTC (rev 60317)
+++ trunk/server/src/main/org/jboss/naming/NamingContextFactory.java	2007-02-06 05:44:57 UTC (rev 60318)
@@ -1,51 +0,0 @@
-/*
-* JBoss, Home of Professional Open Source
-* Copyright 2005, JBoss Inc., and individual contributors as indicated
-* by the @authors tag. See the copyright.txt in the distribution for a
-* full listing of individual contributors.
-*
-* 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.jboss.naming;
-
-import java.util.Hashtable;
-import javax.naming.Context;
-import javax.naming.NamingException;
-
-/** A variation of the org.jnp.interfaces.NamingContextFactory
- * InitialContextFactory implementation that maintains the last envrionment
- * used to create an InitialContext in a thread local variable for
- * access within the scope of the InitialContext. This can be used by
- * the EJB handles to save the context that should be used to perform the
- * looks when the handle is restored.
- *
- * @see org.jnp.interfaces.NamingContextFactory
- *
- * @author Scott.Stark at jboss.org
- * @version $Revision$
- */
-public class NamingContextFactory extends org.jnp.interfaces.NamingContextFactory
-{
-   public static final ThreadLocal lastInitialContextEnv = new ThreadLocal();
-
-   // InitialContextFactory implementation --------------------------
-   public Context getInitialContext(Hashtable env)
-         throws NamingException
-   {
-      lastInitialContextEnv.set(env);
-      return super.getInitialContext(env);
-   }
-}




More information about the jboss-cvs-commits mailing list