blob: 3b90db5acddce933275b6a9a4ff3653c1f7d879f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 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 v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.jaxb;
import javax.xml.bind.JAXBException;
import javax.xml.bind.PropertyException;
import javax.xml.bind.ValidationEventHandler;
import javax.xml.bind.ValidationException;
import javax.xml.bind.Validator;
import javax.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.
*
* @param newXMLMarshaller
*/
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
* @throws JAXBException
*/
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
* @throws JAXBException
*/
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");
}
}