Klasse ConfigurationEntityResolver

java.lang.Object
org.apache.torque.generator.configuration.ConfigurationEntityResolver
Alle implementierten Schnittstellen:
EntityResolver

public class ConfigurationEntityResolver extends Object implements EntityResolver
A resolver to get the confoguration.xsd file for the XML parser from the jar.
Version:
$Id: ConfigurationEntityResolver.java 1839288 2018-08-27 09:48:33Z tv $
  • Felddetails

    • CONFIGURATION_SCHEMA_SYSTEMID

      public static final String CONFIGURATION_SCHEMA_SYSTEMID
      The SystemId of the configuration schema.
      Siehe auch:
    • OUTLET_SCHEMA_SYSTEMID

      public static final String OUTLET_SCHEMA_SYSTEMID
      The SystemId of the configuration schema.
      Siehe auch:
  • Konstruktordetails

    • ConfigurationEntityResolver

      public ConfigurationEntityResolver()
  • Methodendetails

    • resolveEntity

      public InputSource resolveEntity(String publicId, String systemId) throws IOException, SAXException
      An implementation of the SAX EntityResolver interface to be called by the XML parser. If the URI is known, the corresponding resource from the jar is returned. In all other cases, null is returned to indicate that the parser should open a regular connection to the systemId URI.
      Angegeben von:
      resolveEntity in Schnittstelle EntityResolver
      Parameter:
      publicId - The public identifier of the external entity
      systemId - The system identifier of the external entity
      Gibt zurück:
      An InputSource for the entity if the uri is known, or null otherwise.
      Löst aus:
      IOException
      SAXException