01: package org.caramba.validator;
02:
03: import java.lang.annotation.Retention;
04: import static java.lang.annotation.RetentionPolicy.RUNTIME;
05: import java.lang.annotation.Target;
06:
07: /**
08: * @author Pieter Degraeuwe
09: * Date: Aug 9, 2006
10: * Time: 5:56:53 PM
11: */
12: @Target({})
13: @Retention(RUNTIME)
14: public @interface ValidatorProperty {
15: /**
16: * The name of the property to set on the validator
17: */
18: String name();
19:
20: /**
21: * The value of the property to set on the validator
22: */
23: String value();
24:
25: }
|