1 25 package org.objectweb.easybeans.tests.common.helper; 26 27 import javax.naming.InitialContext ; 28 29 35 public final class JNDIHelper { 36 37 40 private JNDIHelper(){ 41 } 42 43 49 public static Object getJavaCompEnvResource(final String name) throws Exception { 50 InitialContext icCTX = new InitialContext (); 51 return icCTX.lookup("java:comp/env/" + name); 52 } 53 } 54 | Popular Tags |