package org.caramba.validator;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Target;
/**
* @author Pieter Degraeuwe
* Date: Aug 9, 2006
* Time: 5:56:53 PM
*/
@Target({})
@Retention(RUNTIME)
public @interface ValidatorProperty {
/**
* The name of the property to set on the validator
*/
String name();
/**
* The value of the property to set on the validator
*/
String value();
}
|