jakarta.validation.groups.Default Maven / Gradle / Ivy
The newest version!
/*
* Jakarta Bean Validation API
*
* License: Apache License, Version 2.0
* See the license.txt file in the root directory or .
*/
package jakarta.validation.groups;
/**
* Default Jakarta Bean Validation group.
*
* Unless a list of groups is explicitly defined:
*
* - constraints belong to the {@code Default} group
* - validation applies to the {@code Default} group
*
* Most structural constraints should belong to the default group.
*
* @author Emmanuel Bernard
*/
public interface Default {
}