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

package aufgabe09.validatoren;

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.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Constraint(validatedBy = PreiskontrolleValidator.class)
@Documented
public @interface Preiskontrolle {
String message() default "Moduleintrag kaputt";
  Class<?>[] groups() default {};
  Class<? extends Payload>[] payload() default {};
  int grenze() ;
}
