/*
* Bean Validation API
*
* License: Apache License, Version 2.0
* See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>.
*/
package javax.validation.groups;
Default Bean Validation group.
Unless a list of groups is explicitly defined:
- constraints belong to the
Default
group
- validation applies to the
Default
group
Most structural constraints should belong to the default group.
Author: Emmanuel Bernard
/**
* Default Bean Validation group.
* <p>
* Unless a list of groups is explicitly defined:
* <ul>
* <li>constraints belong to the {@code Default} group</li>
* <li>validation applies to the {@code Default} group</li>
* </ul>
* Most structural constraints should belong to the default group.
*
* @author Emmanuel Bernard
*/
public interface Default {
}