1 25 26 package org.objectweb.easybeans.naming.pkg.java; 27 28 import java.util.Hashtable ; 29 30 import javax.naming.Context ; 31 import javax.naming.Name ; 32 import javax.naming.spi.ObjectFactory ; 33 34 35 40 public class javaURLContextFactory implements ObjectFactory { 41 42 54 public Object getObjectInstance(final Object url, final Name name, final Context ctx, final Hashtable env) throws Exception { 55 return new JavaURLContext(); 56 } 57 } 58 | Popular Tags |