public class GeneralValidatorImpl extends Object implements GeneralValidator
Constructor and Description |
---|
GeneralValidatorImpl(javax.validation.Validator validator,
MethodValidator methodValidator) |
Modifier and Type | Method and Description |
---|---|
void |
checkViolations(HttpRequest request) |
protected ViolationsContainer<Object> |
getViolationsContainer(HttpRequest request) |
boolean |
isMethodValidatable(Method m)
Indicates if validation is turned on for a method.
|
boolean |
isValidatable(Class<?> clazz)
Indicates if validation is turned on for a class.
|
void |
validate(HttpRequest request,
Object object,
Class<?>... groups)
Validates all constraints on
object . |
void |
validateAllParameters(HttpRequest request,
Object object,
Method method,
Object[] parameterValues,
Class<?>... groups)
Validates all constraints placed on the parameters of the given method.
|
void |
validateReturnValue(HttpRequest request,
Object object,
Method method,
Object returnValue,
Class<?>... groups)
Validates all return value constraints of the given method.
|
public GeneralValidatorImpl(javax.validation.Validator validator, MethodValidator methodValidator)
protected ViolationsContainer<Object> getViolationsContainer(HttpRequest request)
public void checkViolations(HttpRequest request)
checkViolations
in interface GeneralValidator
public void validate(HttpRequest request, Object object, Class<?>... groups)
GeneralValidator
object
.validate
in interface GeneralValidator
object
- object to validategroups
- the group or list of groups targeted for validation (defaults to
Default
)public void validateAllParameters(HttpRequest request, Object object, Method method, Object[] parameterValues, Class<?>... groups)
GeneralValidator
validateAllParameters
in interface GeneralValidator
object
- the object on which the method to validate is invokedmethod
- the method for which the parameter constraints is validatedparameterValues
- the values provided by the caller for the given method's
parametersgroups
- the group or list of groups targeted for validation (defaults to
Default
)public void validateReturnValue(HttpRequest request, Object object, Method method, Object returnValue, Class<?>... groups)
GeneralValidator
validateReturnValue
in interface GeneralValidator
object
- the object on which the method to validate is invokedmethod
- the method for which the return value constraints is validatedreturnValue
- the value returned by the given methodgroups
- the group or list of groups targeted for validation (defaults to
Default
)public boolean isValidatable(Class<?> clazz)
GeneralValidator
isValidatable
in interface GeneralValidator
clazz
- Class to be examinedpublic boolean isMethodValidatable(Method m)
GeneralValidator
isMethodValidatable
in interface GeneralValidator
m
- method to be examinedCopyright © 2013. All Rights Reserved.