|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
org.codehaus.groovy.grails.validation.Constraint org.springframework.context.MessageSourceAware
public interface Constraint extends MessageSourceAware
Defines a validatable constraint.
Method Summary | |
---|---|
java.lang.String
|
getName()
@return The name of the constraint |
java.lang.String
|
getPropertyName()
@return The property name of the constraint |
void
|
setMessageSource(MessageSource source)
The message source to evaluate the default messages from |
void
|
setOwningClass(java.lang.Class owningClass)
The class the constraint applies to |
void
|
setParameter(java.lang.Object parameter)
The parameter which the constraint is validated against. |
void
|
setPropertyName(java.lang.String propertyName)
The name of the property the constraint applies to |
boolean
|
supports(java.lang.Class type)
Returns whether the constraint supports being applied against the specified type; |
void
|
validate(java.lang.Object target, java.lang.Object propertyValue, Errors errors)
Validate this constraint against a property value. |
Method Detail |
---|
public java.lang.String getName()
public java.lang.String getPropertyName()
public void setMessageSource(MessageSource source)
@SuppressWarnings("rawtypes") public void setOwningClass(java.lang.Class owningClass)
public void setParameter(java.lang.Object parameter)
public void setPropertyName(java.lang.String propertyName)
@SuppressWarnings("rawtypes") public boolean supports(java.lang.Class type)
type
- The type to support
public void validate(java.lang.Object target, java.lang.Object propertyValue, Errors errors)
propertyValue
- The property value to validateerrors
- The errors instance to record errors against
Groovy Documentation