org.codehaus.groovy.grails.validation
Interface VetoingConstraint
- All Superinterfaces:
- Constraint
- All Known Implementing Classes:
- AbstractVetoingConstraint, BlankConstraint, NullableConstraint
public interface VetoingConstraint
- extends Constraint
Marker interface for vetoing constraint.
Vetoing constraints are those which might return 'true' from validateWithVetoing method to prevent any additional
validation of the property. These constraints are proceeded before any other constraints, and validation continues
only if no one of vetoing constraint hadn't vetoed.
- Author:
- Sergey Nebolsin ()
validateWithVetoing
boolean validateWithVetoing(Object target,
Object propertyValue,
Errors errors)
Copyright (c) 2005-2006 The Grails project