All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl._42.jarb.constraint.validation.IgnoreDatabaseConstraints Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package nl._42.jarb.constraint.validation;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import javax.validation.Payload;

@Documented
@Target({ FIELD })
@Retention(RUNTIME)
public @interface IgnoreDatabaseConstraints {

    Class[] groups() default {};

    Class[] payload() default {};

    String message() default "";
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy