org.eclipse.persistence.jaxb.ConstraintViolationWrapper 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) 2015, 2018 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 javax.validation.ConstraintViolation;
import javax.validation.Path;
import javax.validation.metadata.ConstraintDescriptor;
/**
* Wrapper over {@link ConstraintViolation} class. Required due to optional nature of javax.validation bundle.
*
* @author Dmitry Kornilov
* @since 2.7.0
*/
public class ConstraintViolationWrapper {
private ConstraintViolation constraintViolation;
/**
* Creates a new wrapper.
* @param constraintViolation original object
*/
public ConstraintViolationWrapper(ConstraintViolation 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 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 unwrap() {
return constraintViolation;
}
}