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