1 55 package org.jboss.axis.utils; 56 57 import org.jboss.logging.Logger; 58 import org.xml.sax.InputSource ; 59 60 public class DefaultEntityResolver implements org.xml.sax.EntityResolver  61 { 62 private static Logger log = Logger.getLogger(XMLUtils.class.getName()); 63 64 public DefaultEntityResolver() 65 { 66 } 67 68 public InputSource resolveEntity(String publicId, String systemId) 69 { 70 return XMLUtils.getEmptyInputSource(); 71 } 72 } 73 | Popular Tags |