com.opensymphony.xwork2.validator.annotations
Annotation Type ValidationParameter
@Target(value={METHOD,TYPE})
@Retention(value=RUNTIME)
public @interface ValidationParameter
The ValidationParameter annotation is used as a parameter for CustomValidators.
Annotation usage:
The annotation must embedded into CustomValidator annotations as a parameter.
Annotation parameters:
Parameter |
Required |
Default |
Notes |
name |
yes |
|
parameter name. |
value |
yes |
|
parameter value. |
Example code:
@CustomValidator(
type ="customValidatorName",
fieldName = "myField",
parameters = { @ValidationParameter( name = "paramName", value = "paramValue" ) }
)
- Author:
- jepjep, Rainer Hermanns
name
public abstract String name
value
public abstract String value
Copyright © 2000-2008 Apache Software Foundation. All Rights Reserved.