All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jakarta.validation.groups.package-info Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show 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 jakarta.validation.groups.Default} group. *

* When applying validation, the list of target groups is passed along. * If no group is explicitly passed along, the * {@code jakarta.validation.groups.Default} group is used. *

* During cascading, groups can be converted from one to another by * the use of {@link jakarta.validation.groups.ConvertGroup} */ package jakarta.validation.groups;





© 2015 - 2024 Weber Informatics LLC | Privacy Policy