blob: fe7996e59d2f50bddd92237f24a8f8039934b10e [file] [log] [blame]
/*
* Copyright (c) 2015, 2020 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:
// Dmitry Kornilov - initial implementation
package org.eclipse.persistence.jaxb;
import jakarta.validation.ConstraintViolation;
import jakarta.validation.Path;
import jakarta.validation.metadata.ConstraintDescriptor;
/**
* Wrapper over {@link ConstraintViolation} class. Required due to optional nature of jakarta.validation bundle.
*
* @author Dmitry Kornilov
* @since 2.7.0
*/
public class ConstraintViolationWrapper<T> {
private ConstraintViolation<T> constraintViolation;
/**
* Creates a new wrapper.
* @param constraintViolation original object
*/
public ConstraintViolationWrapper(ConstraintViolation<T> constraintViolation) {
this.constraintViolation = constraintViolation;
}
/**
* @see ConstraintViolation#getMessage
*/
public String getMessage() {
return constraintViolation.getMessage();
}
/**
* @see ConstraintViolation#getMessageTemplate
*/
public String getMessageTemplate() {
return constraintViolation.getMessageTemplate();
}
/**
* @see ConstraintViolation#getRootBean
*/
public T getRootBean() {
return constraintViolation.getRootBean();
}
/**
* @see ConstraintViolation#getRootBeanClass
*/
public Class<T> getRootBeanClass() {
return constraintViolation.getRootBeanClass();
}
/**
* @see ConstraintViolation#getLeafBean
*/
public Object getLeafBean() {
return constraintViolation.getLeafBean();
}
/**
* @see ConstraintViolation#getExecutableParameters
*/
public Object[] getExecutableParameters() {
return constraintViolation.getExecutableParameters();
}
/**
* @see ConstraintViolation#getExecutableReturnValue
*/
public Object getExecutableReturnValue() {
return constraintViolation.getExecutableReturnValue();
}
/**
* @see ConstraintViolation#getPropertyPath
*/
public Path getPropertyPath() {
return constraintViolation.getPropertyPath();
}
/**
* @see ConstraintViolation#getInvalidValue
*/
public Object getInvalidValue() {
return constraintViolation.getInvalidValue();
}
/**
* @see ConstraintViolation#getConstraintDescriptor
*/
public ConstraintDescriptor<?> getConstraintDescriptor() {
return constraintViolation.getConstraintDescriptor();
}
/**
* Unwraps original object and returns it.
*/
public ConstraintViolation<T> unwrap() {
return constraintViolation;
}
}