1 17 18 package org.apache.naming.resources; 19 20 import java.net.URLStreamHandler ; 21 import java.net.URLStreamHandlerFactory ; 22 23 29 public class DirContextURLStreamHandlerFactory 30 implements URLStreamHandlerFactory { 31 32 33 35 36 public DirContextURLStreamHandlerFactory() { 37 } 38 39 40 42 43 45 46 48 49 57 public URLStreamHandler createURLStreamHandler(String protocol) { 58 if (protocol.equals("jndi")) { 59 return new DirContextURLStreamHandler(); 60 } else { 61 return null; 62 } 63 } 64 65 66 } 67 | Popular Tags |