Deprecated.
since JAXB 2.0
public interface Validator
As of JAXB 2.0, this class is deprecated and optional.
The Validator
class is responsible for controlling the validation of content trees during runtime.
Three Forms of Validation
Unmarshaller.setValidating
. All JAXB 1.0 Providers are required to support this operation. Validator.validate
method on the Java content tree (or any sub-tree of it). All JAXB 1.0 Providers are required to support this operation. The Validator
class is responsible for managing On-Demand Validation. The Unmarshaller
class is responsible for managing Unmarshal-Time Validation during the unmarshal operations. Although there is no formal method of enabling validation during the marshal operations, the Marshaller
may detect errors, which will be reported to the ValidationEventHandler
registered on it.
Using the Default EventHandler
If the client application does not set an event handler on their Validator, Unmarshaller, or Marshaller prior to calling the validate, unmarshal, or marshal methods, then a default event handler will receive notification of any errors or warnings encountered. The default event handler will cause the current operation to halt after encountering the first error or fatal error (but will attempt to continue after receiving warnings).
Handling Validation Events
setEventHandler
API's on Validator
, Unmarshaller
, or Marshaller
. ValidationEventHandler
interface and register it with the Unmarshaller
and/or Validator
. ValidationEventCollector
utilityValidationEvent
objects created during the unmarshal, validate, and marshal operations and returns them to the client application as a java.util.Collection
. Validation and Well-Formedness
Validation events are handled differently depending on how the client application is configured to process them as described in the previous section. However, there are certain cases where a JAXB Provider indicates that it is no longer able to reliably detect and report errors. In these cases, the JAXB Provider will set the severity of the ValidationEvent to FATAL_ERROR to indicate that the unmarshal, validate, or marshal operations should be terminated. The default event handler and
ValidationEventCollector
utility class must terminate processing after being notified of a fatal error. Client applications that supply their ownValidationEventHandler
should also terminate processing after being notified of a fatal error. If not, unexpected behaviour may occur.
Supported Properties
There currently are not any properties required to be supported by all JAXB Providers on Validator. However, some providers may support their own set of provider specific properties.
JAXBContext
, Unmarshaller
, ValidationEventHandler
, ValidationEvent
, ValidationEventCollector
void setEventHandler(ValidationEventHandler handler) throws JAXBException
Deprecated. since JAXB2.0
Allow an application to register a validation event handler.
The validation event handler will be called by the JAXB Provider if any validation errors are encountered during calls to validate
. If the client application does not register a validation event handler before invoking the validate method, then validation events will be handled by the default event handler which will terminate the validate operation after the first error or fatal error is encountered.
Calling this method with a null parameter will cause the Validator to revert back to the default default event handler.
handler
- the validation event handlerJAXBException
- if an error was encountered while setting the event handlerValidationEventHandler getEventHandler() throws JAXBException
Deprecated. since JAXB2.0
Return the current event handler or the default event handler if one hasn't been set.
JAXBException
- if an error was encountered while getting the current event handlerboolean validate(Object subrootObj) throws JAXBException
Deprecated. since JAXB2.0
Validate the Java content tree starting at subrootObj
.
Client applications can use this method to validate Java content trees on-demand at runtime. This method can be used to validate any arbitrary subtree of the Java content tree. Global constraint checking will not be performed as part of this operation (i.e. ID/IDREF constraints).
subrootObj
- the obj to begin validation atsubrootObj
is valid, false otherwiseJAXBException
- if any unexpected problem occurs during validationValidationException
- If the ValidationEventHandler
returns false from its handleEvent
method or the Validator
is unable to validate the content tree rooted at subrootObj
IllegalArgumentException
- If the subrootObj parameter is nullboolean validateRoot(Object rootObj) throws JAXBException
Deprecated. since JAXB2.0
Validate the Java content tree rooted at rootObj
.
Client applications can use this method to validate Java content trees on-demand at runtime. This method is used to validate an entire Java content tree. Global constraint checking will be performed as part of this operation (i.e. ID/IDREF constraints).
rootObj
- the root obj to begin validation atrootObj
is valid, false otherwiseJAXBException
- if any unexpected problem occurs during validationValidationException
- If the ValidationEventHandler
returns false from its handleEvent
method or the Validator
is unable to validate the content tree rooted at rootObj
IllegalArgumentException
- If the rootObj parameter is nullvoid setProperty(String name, Object value) throws PropertyException
Deprecated. since JAXB2.0
Set the particular property in the underlying implementation of Validator
. This method can only be used to set one of the standard JAXB defined properties above or a provider specific property. Attempting to set an undefined property will result in a PropertyException being thrown. See Supported Properties.
name
- the name of the property to be set. This value can either be specified using one of the constant fields or a user supplied string.value
- the value of the property to be setPropertyException
- when there is an error processing the given property or valueIllegalArgumentException
- If the name parameter is nullObject getProperty(String name) throws PropertyException
Deprecated. since JAXB2.0
Get the particular property in the underlying implementation of Validator
. This method can only be used to get one of the standard JAXB defined properties above or a provider specific property. Attempting to get an undefined property will result in a PropertyException being thrown. See Supported Properties.
name
- the name of the property to retrievePropertyException
- when there is an error retrieving the given property or value property nameIllegalArgumentException
- If the name parameter is null
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.