1 8 package org.apache.avalon.excalibur.xml; 9 10 import org.apache.avalon.framework.component.Component; 11 import org.xml.sax.InputSource ; 12 import org.xml.sax.SAXException ; 13 14 import java.io.IOException ; 15 16 22 public interface EntityResolver 23 extends Component, org.xml.sax.EntityResolver { 24 25 String ROLE = "org.apache.avalon.excalibur.xml.EntityResolver"; 26 27 61 InputSource resolveEntity(String publicId, 62 String systemId) 63 throws SAXException , IOException ; 64 } 65 | Popular Tags |