There is a Default group in javax.validation.groups.Default, which represents the default Bean Validation group. Unless a list of groups is explicitly defined:
- constraints belong to the
Defaultgroup - validation applies to the
Defaultgroup
You could extends this group:
public interface ValidatedOnCreationOnly extends Default {}