Klasse EntityReferences

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

public class EntityReferences extends Object implements EntityResolver
Resolves system Ids for schema files to the schema file content.
  • Konstruktordetails

    • EntityReferences

      public EntityReferences()
  • Methodendetails

    • addEntityReference

      public void addEntityReference(String systemId, byte[] content)
      Adds a new entity reference.
      Parameter:
      systemId - the systemId of the entity, not null.
      content - the content of the entity, not null.
      Löst aus:
      NullPointerException - if systemId or content are null.
      IllegalArgumentException - if the systemId is already defined.
    • containsSystemId

      public boolean containsSystemId(String systemId)
      Returns whether the given system id is known.
      Parameter:
      systemId - the system id to check.
      Gibt zurück:
      true if the system id can be resolved, false otherwise.
    • getEntityReferences

      public Map<String,byte[]> getEntityReferences()
      Returns a copy of the entity reference map.
      Gibt zurück:
      a copy of the entity reference map.
    • 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 systemId 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 systemId is known, or null otherwise.
      Löst aus:
      IOException
      SAXException