|
||||||||||
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 a delegate for validating parameters and return values of methods respectively constructors. |
|
BeanDescriptor |
getConstraintsForClass(Class<?> clazz)
Return the descriptor object describing bean constraints. |
|
|
unwrap(Class<T> type)
Return 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)
ConstraintDescriptor
s) 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 call.ExecutableValidator forExecutables()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |