| Package | org.granite.validation.groups |
| Interface | public interface Default |
javax.validation.groups.Default).
Note: if you refer to javax.validation.groups.Default
in your constraint annotation declaration, this interface will be
used instead. Hence, the two following declarations are stricktly
equivalent:
[NotNull(groups="javax.validation.groups.Default")]
public function get property():String {...}
[NotNull(groups="org.granite.validation.groups.Default")]
public function get property():String {...}