org.eclipse.persistence.jaxb.JAXBValidator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eclipselink Show documentation
Show all versions of eclipselink Show documentation
EclipseLink build based upon Git transaction f2b9fc5
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.jaxb;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.PropertyException;
import jakarta.xml.bind.ValidationEventHandler;
import jakarta.xml.bind.ValidationException;
import jakarta.xml.bind.helpers.DefaultValidationEventHandler;
import org.eclipse.persistence.oxm.XMLValidator;
/**
* Facilitates JAXBValidation.
*/
public class JAXBValidator /*implements Validator*/ {
private ValidationEventHandler validationEventHandler;
private XMLValidator xmlValidator;
/**
* This constructor creates a
* DefaultValidationEventHandlervalidation instance, and sets the
* XMLMarshaller instance to the one provided.
*
*/
public JAXBValidator(XMLValidator newValidator) {
super();
validationEventHandler = new DefaultValidationEventHandler();
xmlValidator = newValidator;
}
/**
* Validate a root object against a schema.
*
* @param rootObject - the root object to be validated
* @return true if a valid root object, false otherwise
*/
public boolean validateRoot(Object rootObject) throws JAXBException {
if (rootObject == null) {
throw new IllegalArgumentException();
}
try {
return xmlValidator.validateRoot(rootObject);
} catch (Exception e) {
throw new ValidationException(e);
}
}
/**
* Validate a non-root object against a schema.
*
* @param object - the object to be validated
* @return true if a valid object, false otherwise
*/
public boolean validate(Object object) throws JAXBException {
if (object == null) {
throw new IllegalArgumentException();
}
try {
return xmlValidator.validate(object);
} catch (Exception e) {
throw new ValidationException(e);
}
}
public void setEventHandler(ValidationEventHandler newValidationEventHandler) throws JAXBException {
if (null == newValidationEventHandler) {
validationEventHandler = new DefaultValidationEventHandler();
} else {
validationEventHandler = newValidationEventHandler;
}
xmlValidator.setErrorHandler(new JAXBErrorHandler(validationEventHandler));
}
public ValidationEventHandler getEventHandler() throws JAXBException {
return validationEventHandler;
}
public void setProperty(String key, Object value) throws PropertyException {
if (key == null) {
throw new IllegalArgumentException();
}
throw new PropertyException(key, value);
}
public Object getProperty(String key) throws PropertyException {
if (key == null) {
throw new IllegalArgumentException();
}
throw new PropertyException("Unsupported Property");
}
}