View Javadoc

1   /**
2    *    Copyright 2011 meltmedia
3    *
4    *    Licensed under the Apache License, Version 2.0 (the "License");
5    *    you may not use this file except in compliance with the License.
6    *    You may obtain a copy of the License at
7    *
8    *        http://www.apache.org/licenses/LICENSE-2.0
9    *
10   *    Unless required by applicable law or agreed to in writing, software
11   *    distributed under the License is distributed on an "AS IS" BASIS,
12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   *    See the License for the specific language governing permissions and
14   *    limitations under the License.
15   */
16  package org.xchain.framework.util;
17  
18  import java.util.Properties;
19  import javax.naming.InitialContext;
20  import javax.naming.NamingException;
21  import org.slf4j.Logger;
22  import org.slf4j.LoggerFactory;
23  
24  /**
25   * @author Mike Moulton
26   * @author Josh Kennedy
27   */
28  public final class NamingUtil {
29  
30  	private static final Logger log = LoggerFactory.getLogger(NamingUtil.class);
31  
32  	private NamingUtil() {}
33  
34  	public static InitialContext getInitialContext()
35  	  throws NamingException
36  	{
37      return getInitialContext(null);
38    }
39  
40  	public static InitialContext getInitialContext(Properties props)
41  	  throws NamingException
42  	{
43  		Properties properties = getJndiProperties(props);
44  		try {
45  		  if (properties != null && properties.size() > 0) {
46      		log.debug("Configuring InitialContext:" + properties);
47          return new InitialContext(properties);
48  		  } else {
49          return new InitialContext();
50  		  }
51  		} catch (NamingException e) {
52  			log.error("Unable to obtain an InitialContext:", e);
53  			throw e;
54  		}
55  	}
56  
57  	/**
58  	 * TODO: Place holder for more advanced configuration in the future
59  	 */
60  	public static Properties getJndiProperties(Properties properties) {
61  		return properties;
62  	}
63  
64  }
65  
66  
67  
68  
69  
70  
71