java.lang.Objectjavax.xml.validation.Validator
A processor that checks an XML document against Schema .
A validator is a thread-unsafe and non-reentrant object. In other words, it is the application's responsibility to make sure that one Validator object is not used from more than one thread at any given time, and while the validate method is invoked, applications may not recursively call the validate method.
Note that while the #validate(javax.xml.transform.Source) and #validate(javax.xml.transform.Source, javax.xml.transform.Result)
methods take a Source instance, the Source
instance must be a SAXSource
, DOMSource
, StAXSource
or StreamSource
.
- href="mailto:Kohsuke.Kawaguchi@Sun.com">Kohsuke Kawaguchi
$
- Revision: 888884 $, $Date: 2009-12-09 12:36:46 -0500 (Wed, 09 Dec 2009) $1.5
- Constructor: |
---|
The constructor does nothing. Derived classes must create Validator objects that have null ErrorHandler and null LSResourceResolver . |
Method from javax.xml.validation.Validator Summary: |
---|
getErrorHandler, getFeature, getProperty, getResourceResolver, reset, setErrorHandler, setFeature, setProperty, setResourceResolver, validate, validate |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from javax.xml.validation.Validator Detail: | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||
The feature name is any fully-qualified URI. It is possible for a Validator to recognize a feature name but temporarily be unable to return its value. Some feature values may be available only in specific contexts, such as before, during, or after a validation. Implementors are free (and encouraged) to invent their own features, using names built on their own URIs. | ||||||||||||||||||||||||||||||
The property name is any fully-qualified URI. It is possible for a Validator to recognize a property name but temporarily be unable to return its value. Some property values may be available only in specific contexts, such as before, during, or after a validation. Validator s are not required to recognize any specific property names. Implementors are free (and encouraged) to invent their own properties, using names built on their own URIs. | ||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||
Reset this
The reset | ||||||||||||||||||||||||||||||
validate method invocation.
Error handler can be used to customize the error handling process during a validation. When an ErrorHandler is set, errors found during the validation will be first sent to the ErrorHandler . The error handler can abort further validation immediately by throwing SAXException from the handler. Or for example it can print an error to the screen and try to continue the validation by returning normally from the ErrorHandler
If any Throwable is thrown from an ErrorHandler ,
the caller of the Validator is not allowed to throw SAXException without first reporting it to ErrorHandler . When the ErrorHandler is null, the implementation will behave as if the following ErrorHandler is set: class DraconianErrorHandler implements ErrorHandler { public void fatalError( org.xml.sax.SAXParseException e ) throws SAXException { throw e; } public void error( org.xml.sax.SAXParseException e ) throws SAXException { throw e; } public void warning( org.xml.sax.SAXParseException e ) throws SAXException { // noop } } When a new Validator object is created, initially this field is set to null. | ||||||||||||||||||||||||||||||
Feature can be used to control the way a Validator parses schemas, although Validator s are not required to recognize any specific property names. The feature name is any fully-qualified URI. It is possible for a Validator to expose a feature value but to be unable to change the current value. Some feature values may be immutable or mutable only in specific contexts, such as before, during, or after a validation. | ||||||||||||||||||||||||||||||
The property name is any fully-qualified URI. It is possible for a Validator to recognize a property name but to be unable to change the current value. Some property values may be immutable or mutable only in specific contexts, such as before, during, or after a validation. Validator s are not required to recognize setting any specific property names. | ||||||||||||||||||||||||||||||
Validator uses a LSResourceResolver when it needs to locate external resources while a validation, although exactly what constitutes "locating external resources" is up to each schema language. When the LSResourceResolver is null, the implementation will behave as if the following LSResourceResolver is set: class DumbLSResourceResolver implements LSResourceResolver { public org.w3c.dom.ls.LSInput resolveResource( String publicId, String systemId, String baseURI) { return null; // always return null } }
If a LSResourceResolver throws a RuntimeException
(or instances of its derived classes),
then the Validator will abort the parsing and
the caller of the When a new Validator object is created, initially this field is set to null. | ||||||||||||||||||||||||||||||
This is just a convenience method of: validate(source,null); | ||||||||||||||||||||||||||||||
This method places the following restrictions on the types of the Source /Result accepted. Source /Result accepted:
To validate one Source into another kind of Result , use the identity transformer (see javax.xml.transform.TransformerFactory#newTransformer() ). Errors found during the validation is sent to the specified ErrorHandler . If a document is valid, or if a document contains some errors but none of them were fatal and the ErrorHandler didn't throw any exception, then the method returns normally. |