| java.lang.Object de.danet.an.workflow.util.JAREntityResolver
JAREntityResolver | public class JAREntityResolver implements EntityResolver(Code) | | Resolve an entity description from a jar archive.
For example, if there is a file push_abo_data.dtd
in the jar file, a sax or dom parser reading xml content
refering to that dtd must have this entitiyresolver.
The resolver is set via the setEntityResolver()
method.
|
Method Summary | |
public InputSource | resolveEntity(String publicId, String systemId) Allow to resolve external entities.
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. |
resolveEntity | public InputSource resolveEntity(String publicId, String systemId)(Code) | | Allow to resolve external entities.
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 that the parser open a regular URI connection to the system identifier. |
|
|