1 package org.openejb.core.ivm.naming; 2 3 import javax.naming.NamingException ; 4 5 import org.openejb.OpenEJB; 6 7 18 public class IntraVmJndiReference implements Reference{ 19 20 private String jndiName; 21 22 public IntraVmJndiReference(String jndiName){ 23 this.jndiName = jndiName; 24 } 25 26 public Object getObject( ) throws NamingException{ 27 return OpenEJB.getJNDIContext().lookup( jndiName ); 28 } 29 } 30 | Popular Tags |