public interface ValidationError extends Message
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getActionPath()
Returns the action path of the form/ActionBean, if one was supplied.
|
java.lang.Class<? extends ActionBean> |
getBeanclass()
Returns the class of the ActionBean associated to the request.
|
java.lang.String |
getFieldName()
Returns the name of the field in error, if one was supplied.
|
java.lang.String |
getFieldValue()
Returns the value that is in error, if one was supplied.
|
void |
setActionPath(java.lang.String actionPath)
Provides the message with access to the unique action path associated with the
ActionBean bound to the current request.
|
void |
setBeanclass(java.lang.Class<? extends ActionBean> clazz)
Provides the message with access to the class of the ActionBean that is bound
to the current request.
|
void |
setFieldName(java.lang.String name)
Provides the message with access to the name of the field in which the error occurred.
|
void |
setFieldValue(java.lang.String value)
Provides the message with access to the value of the field in which the error occurred
|
getMessage
void setFieldName(java.lang.String name)
void setFieldValue(java.lang.String value)
void setActionPath(java.lang.String actionPath)
void setBeanclass(java.lang.Class<? extends ActionBean> clazz)
java.lang.String getFieldName()
java.lang.String getFieldValue()
java.lang.String getActionPath()
java.lang.Class<? extends ActionBean> getBeanclass()
? Copyright 2005-2006, Stripes Development Team.