org.apache.bval.jsr303.extensions.MethodValidatorImpl Maven / Gradle / Ivy
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.bval.jsr303.extensions;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import java.util.Collections;
import java.util.List;
import java.util.Set;
import javax.validation.ConstraintViolation;
import javax.validation.ValidationException;
import javax.validation.metadata.ConstraintDescriptor;
import org.apache.bval.jsr303.ApacheFactoryContext;
import org.apache.bval.jsr303.BeanDescriptorImpl;
import org.apache.bval.jsr303.ClassValidator;
import org.apache.bval.jsr303.ConstraintValidation;
import org.apache.bval.jsr303.ConstraintValidationListener;
import org.apache.bval.jsr303.GroupValidationContext;
import org.apache.bval.jsr303.groups.Group;
import org.apache.bval.jsr303.groups.Groups;
import org.apache.bval.model.MetaBean;
import org.apache.bval.util.ValidationHelper;
/**
* Description: experimental implementation of method-level-validation
*/
class MethodValidatorImpl extends ClassValidator implements MethodValidator {
/**
* Create a new MethodValidatorImpl instance.
*
* @param factoryContext
*/
public MethodValidatorImpl(ApacheFactoryContext factoryContext) {
super(factoryContext);
}
/**
* {@inheritDoc}
*/
@Override
protected BeanDescriptorImpl createBeanDescriptor(MetaBean metaBean) {
MethodBeanDescriptorImpl descriptor = new MethodBeanDescriptorImpl(factoryContext, metaBean);
MethodValidatorMetaBeanFactory factory = new MethodValidatorMetaBeanFactory(factoryContext);
factory.buildMethodDescriptor(descriptor);
return descriptor;
}
/**
* {@inheritDoc} enhancement: method-level-validation not yet completly
* implemented
*
*
* example:
*
* public @NotNull String saveItem(@Valid @NotNull Item item, @Max(23) BigDecimal
*
*
*
* spec: The constraints declarations evaluated are the constraints hosted
* on the parameters of the method or constructor. If @Valid is placed on a
* parameter, constraints declared on the object itself are considered.
*
* @throws IllegalArgumentException
* enhancement: if the method does not belong to T
* or if the Object[] does not match the method signature
*/
public Set> validateParameters(Class clazz, Method method, Object[] parameters,
Class>... groupArray) {
MethodBeanDescriptorImpl beanDesc = (MethodBeanDescriptorImpl) getConstraintsForClass(clazz);
MethodDescriptorImpl methodDescriptor = (MethodDescriptorImpl) beanDesc.getConstraintsForMethod(method);
if (methodDescriptor == null) {
throw new ValidationException("Method " + method + " doesn't belong to class " + clazz);
}
return validateParameters(methodDescriptor.getMetaBean(), methodDescriptor.getParameterDescriptors(),
parameters, groupArray);
}
/**
* {@inheritDoc}
*/
public Set> validateParameter(Class clazz, Method method, Object parameter,
int parameterIndex, Class>... groupArray) {
MethodBeanDescriptorImpl beanDesc = (MethodBeanDescriptorImpl) getConstraintsForClass(clazz);
MethodDescriptorImpl methodDescriptor = (MethodDescriptorImpl) beanDesc.getConstraintsForMethod(method);
if (methodDescriptor == null) {
throw new ValidationException("Method " + method + " doesn't belong to class " + clazz);
}
ParameterDescriptorImpl paramDesc =
(ParameterDescriptorImpl) methodDescriptor.getParameterDescriptors().get(parameterIndex);
return validateParameter(paramDesc, parameter, groupArray);
}
/**
* {@inheritDoc}
*/
public Set> validateParameters(Class clazz, Constructor constructor,
Object[] parameters, Class>... groupArray) {
MethodBeanDescriptorImpl beanDesc = (MethodBeanDescriptorImpl) getConstraintsForClass(clazz);
ConstructorDescriptorImpl constructorDescriptor =
(ConstructorDescriptorImpl) beanDesc.getConstraintsForConstructor(constructor);
if (constructorDescriptor == null) {
throw new ValidationException("Constructor " + constructor + " doesn't belong to class " + clazz);
}
return validateParameters(constructorDescriptor.getMetaBean(), constructorDescriptor.getParameterDescriptors(),
parameters, groupArray);
}
/**
* {@inheritDoc}
*/
public Set> validateParameter(Class clazz, Constructor constructor,
Object parameter, int parameterIndex, Class>... groupArray) {
MethodBeanDescriptorImpl beanDesc = (MethodBeanDescriptorImpl) getConstraintsForClass(clazz);
ConstructorDescriptorImpl constructorDescriptor =
(ConstructorDescriptorImpl) beanDesc.getConstraintsForConstructor(constructor);
if (constructorDescriptor == null) {
throw new ValidationException("Constructor " + constructor + " doesn't belong to class " + clazz);
}
ParameterDescriptorImpl paramDesc =
(ParameterDescriptorImpl) constructorDescriptor.getParameterDescriptors().get(parameterIndex);
return validateParameter(paramDesc, parameter, groupArray);
}
/**
* {@inheritDoc} If @Valid is placed on the method, the constraints declared
* on the object itself are considered.
*/
@SuppressWarnings("unchecked")
public Set> validateReturnedValue(Class clazz, Method method, Object returnedValue,
Class>... groupArray) {
MethodBeanDescriptorImpl beanDesc = (MethodBeanDescriptorImpl) getConstraintsForClass(clazz);
MethodDescriptorImpl methodDescriptor = (MethodDescriptorImpl) beanDesc.getConstraintsForMethod(method);
if (methodDescriptor == null) {
throw new ValidationException("Method " + method + " doesn't belong to class " + clazz);
}
final GroupValidationContext
© 2015 - 2025 Weber Informatics LLC | Privacy Policy