javax.validation.groups.package-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache Show documentation
Show all versions of ehcache Show documentation
Ehcache is an open source, standards-based cache used to boost performance,
offload the database and simplify scalability. Ehcache is robust, proven and full-featured and
this has made it the most widely-used Java-based cache.
The newest version!
/*
* Jakarta Bean Validation API
*
* License: Apache License, Version 2.0
* See the license.txt file in the root directory or .
*/
/**
* A group defines a subset of constraints. Instead of
* validating all constraints for a given object graph,
* only a subset is validated depending on the group targeted.
*
* Each constraint declaration defines the list of groups it belongs to.
* If no group is explicitly declared, a constraint belongs to the
* {@link javax.validation.groups.Default} group.
*
* When applying validation, the list of target groups is passed along.
* If no group is explicitly passed along, the
* {@code javax.validation.groups.Default} group is used.
*
* During cascading, groups can be converted from one to another by
* the use of {@link javax.validation.groups.ConvertGroup}
*/
package javax.validation.groups;