blob: c89705e0eb69ed5075b6b6578f41c8d46b0ce107 [file] [log] [blame]
package org.apache.myfaces.extensions.validator.test.propval.constraintsource.custom;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Target({FIELD, METHOD})
@Retention(RUNTIME)
@Documented
public @interface CustomTargetProperty
{
public abstract String value();
}