1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
26
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
59
60 public static Properties getJndiProperties(Properties properties) {
61 return properties;
62 }
63
64 }
65
66
67
68
69
70
71