1 28 package org.objectweb.carol.jndi.spi; 29 30 import javax.naming.spi.InitialContextFactory ; 31 32 40 public class IRMIContextWrapperFactory extends AbsInitialContextFactory implements InitialContextFactory { 41 42 45 public static final String REFERENCING_FACTORY = "com.sun.jndi.rmi.registry.RegistryContextFactory"; 46 47 50 protected String getReferencingFactory() { 51 return REFERENCING_FACTORY; 52 } 53 54 57 protected Class getWrapperClass() { 58 return IRMIContext.class; 59 } 60 61 } 62 | Popular Tags |