|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
The Validator class is responsible for controlling the validation of content trees during runtime.
Unmarhaller.setValidating
. All JAXB Providers are required to support this operation.Validator.validate
method on the Java content tree (or any sub-tree of it). All JAXB 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
ValidationEventCollector
utilityValidation 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 own ValidationEventHandler should also terminate processing after being notified of a fatal error. If not, unexpected behaviour may occur.
JAXBContext
, Unmarshaller
, ValidationEventHandler
, ValidationEvent
, ValidationEventCollector
Method Summary | |
ValidationEventHandler |
getEventHandler() Return the current event handler or the default event handler if one hasn't been set. |
void |
setEventHandler(ValidationEventHandler handler) Allow an application to register a validation event handler. |
boolean |
validate(java.lang.Object subrootObj) Validate the Java content tree starting at subrootObj. |
boolean |
validateRoot(java.lang.Object rootObj) Validate the Java content tree rooted at rootObj. |
Method Detail |
public void setEventHandler(ValidationEventHandler handler) throws JAXBException
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.
handler
- the validation event handlerJAXBException
- if an error was encountered while setting the event handlerpublic ValidationEventHandler getEventHandler() throws JAXBException
JAXBException
- if an error was encountered while getting the current event handlerpublic boolean validate(java.lang.Object subrootObj) throws JAXBException
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 atJAXBException
- if any unexpected problem occurs during validationValidationException
- if the provider is unable to validate the content tree rooted at subrootObjpublic boolean validateRoot(java.lang.Object rootObj) throws JAXBException
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 atJAXBException
- if any unexpected problem occurs during validationValidationException
- if the provider is unable to validate the content tree rooted at rootObj
|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |