| java.lang.Object org.objectweb.jonas_lib.deployment.validation.JEntityResolver org.objectweb.jonas_lib.deployment.digester.JEntityResolverWithDigester
JEntityResolverWithDigester | public class JEntityResolverWithDigester extends JEntityResolver implements EntityResolver(Code) | | This class defines the entity resolver used to resolve DTDs/Schemas during
the xml parsing. It extends the JEntityResolver in jonas_lib/deployment/validation
in order to allow for that parser to be used without having the digester classes.
|
Method Summary | |
public InputSource | resolveEntity(String publicId, String systemId) The Parser will call this method before opening any external entity except
the top-level document entity.
Parameters: publicId - The public identifier of the external entity being referenced,or null if none was supplied. Parameters: systemId - The system identifier of the external entity being referenced. |
JEntityResolverWithDigester | public JEntityResolverWithDigester(JDigester jd)(Code) | | Constructor
Parameters: jd - linked JDigester object |
resolveEntity | public InputSource resolveEntity(String publicId, String systemId) throws IOException, SAXException(Code) | | The Parser will call this method before opening any external entity except
the top-level document entity.
Parameters: publicId - The public identifier of the external entity being referenced,or null if none was supplied. Parameters: systemId - The system identifier of the external entity being referenced. An InputSource object describing the new input source, or null to request thatthe parser open a regular URI connection to the system identifier. throws: SAXException - Any SAX exception, possibly wrapping another exception. throws: IOException - A Java-specific IO exception, possibly the result of creatinga new InputStream or Reader for the InputSource. |
|
|