/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package bean303;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import javax.validation.Constraint;
import javax.validation.Payload;

/**
 *
 * @author x
 */
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Constraint(validatedBy = {ModulCheckValidator.class,ModulCheckValidator2.class})
@Documented
public @interface ModulCheck {

  String message() default "Moduleintrag kaputt";

  Class<?>[] groups() default {};

  Class<? extends Payload>[] payload() default {};

  boolean value() default true;
}
