X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=test%2Fenterprise%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fsupport%2Fjndi%2FStubInitialContextFactory.java;h=d65968a21e5e22e00aad4e5999fb06522d97ac88;hb=96c8961955a306314dfe0cf9ca192252de39fc1c;hp=23d3cf6eec265f0f15b497673fd12a6d00e526e3;hpb=539c6d91b7a34e32c6669445d00e9275c337530a;p=utils diff --git a/test/enterprise/src/main/java/org/wamblee/support/jndi/StubInitialContextFactory.java b/test/enterprise/src/main/java/org/wamblee/support/jndi/StubInitialContextFactory.java index 23d3cf6e..d65968a2 100644 --- a/test/enterprise/src/main/java/org/wamblee/support/jndi/StubInitialContextFactory.java +++ b/test/enterprise/src/main/java/org/wamblee/support/jndi/StubInitialContextFactory.java @@ -1,11 +1,23 @@ +/* + * Copyright 2005-2010 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.wamblee.support.jndi; -import java.util.HashMap; import java.util.Hashtable; -import java.util.Map; import javax.naming.Context; -import javax.naming.InitialContext; import javax.naming.NamingException; import javax.naming.spi.InitialContextFactory; @@ -23,11 +35,11 @@ import javax.naming.spi.InitialContextFactory; */ public class StubInitialContextFactory implements InitialContextFactory { - private static Context context; + private static Context CONTEXT; private static void initialize() { try { - context = new StubInitialContext(); + CONTEXT = new StubInitialContext(); } catch (NamingException e) { // can't happen. throw new RuntimeException(e); } @@ -43,7 +55,7 @@ public class StubInitialContextFactory implements InitialContextFactory { // sets up the InitialContextFactoryForTest as default factory. System.setProperty(Context.INITIAL_CONTEXT_FACTORY, StubInitialContextFactory.class.getName()); - if (context == null) { + if (CONTEXT == null) { initialize(); } } @@ -53,11 +65,11 @@ public class StubInitialContextFactory implements InitialContextFactory { */ public static void unregister() { System.setProperty(Context.INITIAL_CONTEXT_FACTORY, ""); - context = null; + CONTEXT = null; } - public Context getInitialContext(Hashtable environment) + public Context getInitialContext(Hashtable aEnvironment) throws NamingException { - return context; + return CONTEXT; } }