blob: e6205a3a5049eabfe209ea4f2977f2d67932335c [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 CustomIgnoreConstraintSource
{
}