1 4 package org.jboss.test.cmp2.ejbselect; 5 6 9 public class AUtil 10 { 11 12 13 private static org.jboss.test.cmp2.ejbselect.ALocalHome cachedLocalHome = null; 14 15 17 21 public static org.jboss.test.cmp2.ejbselect.ALocalHome getLocalHome() throws javax.naming.NamingException 22 { 23 if (cachedLocalHome == null) { 25 javax.naming.InitialContext initialContext = new javax.naming.InitialContext (); 27 try { 28 cachedLocalHome = (org.jboss.test.cmp2.ejbselect.ALocalHome) initialContext.lookup(org.jboss.test.cmp2.ejbselect.ALocalHome.JNDI_NAME); 29 } finally { 30 initialContext.close(); 31 } 32 } 33 return cachedLocalHome; 34 } 35 36 } | Popular Tags |