| Class | Description |
|---|---|
| org.apache.commons.digester.parser.GenericParser |
Create an XMLParser instance yourself, configure validation
appropriately, and pass it as a parameter to the
Digester constructor, or use
Digester.setXMLSchema(javax.xml.validation.Schema) for validation. |
| org.apache.commons.digester.ParserFeatureSetterFactory |
Create an XMLParser instance yourself, configure validation
appropriately, and pass it as a parameter to the
Digester constructor, or use
Digester.setXMLSchema(javax.xml.validation.Schema) for validation. |
| org.apache.commons.digester.parser.XercesParser |
Create an XMLParser instance yourself, configure validation
appropriately, and pass it as a parameter to the
Digester constructor, or use
Digester.setXMLSchema(javax.xml.validation.Schema) for validation. |
| Field | Description |
|---|---|
| org.apache.commons.digester.Digester.JAXP_SCHEMA_LANGUAGE |
This is now managed by
ParserFeatureSetterFactory |
| org.apache.commons.digester.Digester.schemaLanguage |
Use
Schema support instead. |
| org.apache.commons.digester.Digester.schemaLocation |
Use
Schema support instead. |
| Method | Description |
|---|---|
| org.apache.commons.digester.Rule.begin(Attributes) |
Use the
begin
method with namespace and name
parameters instead. |
| org.apache.commons.digester.Rule.body(String) |
Use the
body method
with namespace and name parameters
instead. |
| org.apache.commons.digester.Rule.end() |
Use the
end method with
namespace and name parameters instead. |
| org.apache.commons.digester.Digester.getDebug() |
This method now always returns 0. Digester uses the apache
jakarta commons-logging library; see the documentation for that library
for more information.
|
| org.apache.commons.digester.Digester.getReader() |
Use getXMLReader() instead, which can throw a
SAXException if the reader cannot be instantiated
|
| org.apache.commons.digester.Digester.getSchema() |
Use
Schema for validation instead. |
| org.apache.commons.digester.Digester.getSchemaLanguage() |
Use
Schema for validation instead. |
| org.apache.commons.digester.Digester.log(String) |
Call getLogger() and use it's logging methods
|
| org.apache.commons.digester.Digester.log(String, Throwable) |
Call getLogger() and use it's logging methods
|
| org.apache.commons.digester.AbstractRulesImpl.match(String) |
Call match(namespaceURI,pattern) instead.
|
| org.apache.commons.digester.plugins.PluginRules.match(String) |
Call match(namespaceURI,pattern) instead.
|
| org.apache.commons.digester.Rules.match(String) |
Call match(namespaceURI,pattern) instead.
|
| org.apache.commons.digester.RulesBase.match(String) |
Call match(namespaceURI,pattern) instead.
|
| org.apache.commons.digester.Digester.setDebug(int) |
This method now has no effect at all. Digester uses
the apache jakarta comons-logging library; see the documentation
for that library for more information.
|
| org.apache.commons.digester.Digester.setSchema(String) |
Use
Schema for validation instead. |
| org.apache.commons.digester.Digester.setSchemaLanguage(String) |
Use
Schema for validation instead. |