|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface Validator
Validates bean instances. Implementations of this interface must be thread-safe.
| Method Summary | ||
|---|---|---|
ExecutableValidator |
forExecutables()
Returns the contract for validating parameters and return values of methods and constructors. |
|
BeanDescriptor |
getConstraintsForClass(Class<?> clazz)
Returns the descriptor object describing bean constraints. |
|
|
unwrap(Class<T> type)
Returns an instance of the specified type allowing access to provider-specific APIs. |
|
|
validate(T object,
Class<?>... groups)
Validates all constraints on object. |
|
|
validateProperty(T object,
String propertyName,
Class<?>... groups)
Validates all constraints placed on the property of object
named propertyName. |
|
|
validateValue(Class<T> beanType,
String propertyName,
Object value,
Class<?>... groups)
Validates all constraints placed on the property named propertyName
of the class beanType would the property value be value. |
|
| Method Detail |
|---|
<T> Set<ConstraintViolation<T>> validate(T object,
Class<?>... groups)
object.
object - object to validategroups - the group or list of groups targeted for validation (defaults to
Default)
IllegalArgumentException - if object is null
or if null is passed to the varargs groups
ValidationException - if a non recoverable error happens
during the validation process
<T> Set<ConstraintViolation<T>> validateProperty(T object,
String propertyName,
Class<?>... groups)
object
named propertyName.
object - object to validatepropertyName - property to validate (i.e. field and getter constraints)groups - the group or list of groups targeted for validation (defaults to
Default)
IllegalArgumentException - if object is null,
if propertyName is null, empty or not a valid object property
or if null is passed to the varargs groups
ValidationException - if a non recoverable error happens
during the validation process
<T> Set<ConstraintViolation<T>> validateValue(Class<T> beanType,
String propertyName,
Object value,
Class<?>... groups)
propertyName
of the class beanType would the property value be value.
ConstraintViolation objects return null for
ConstraintViolation.getRootBean() and ConstraintViolation.getLeafBean().
beanType - the bean typepropertyName - property to validatevalue - property value to validategroups - the group or list of groups targeted for validation (defaults to
Default).
IllegalArgumentException - if beanType is null,
if propertyName is null, empty or not a valid object property
or if null is passed to the varargs groups
ValidationException - if a non recoverable error happens
during the validation processBeanDescriptor getConstraintsForClass(Class<?> clazz)
ConstraintDescriptors) are immutable.
clazz - class or interface type evaluated
IllegalArgumentException - if clazz is null
ValidationException - if a non recoverable error happens
during the metadata discovery or if some
constraints are invalid.<T> T unwrap(Class<T> type)
ValidationException is thrown.
type - the class of the object to be returned
ValidationException - if the provider does not support the callExecutableValidator forExecutables()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||