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

package validators;

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;

@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Constraint(validatedBy = {ModulnamenregelValidator.class})
@Documented
public @interface Modulnamenregel {
  String message() default "Modul unerwuenscht";
  Class<?>[] groups() default {};
  Class<? extends Payload>[] payload() default {};
  String[] verboten() default {};
}
