package javax.naming.spi; import java.util.Hashtable; import javax.naming.NamingException; public interface ObjectFactoryBuilder { ObjectFactory createObjectFactory(Object obj, Hashtable hashtable) throws NamingException; }