nl._42.jarb.constraint.validation.IgnoreDatabaseConstraints Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jarb Show documentation
Show all versions of jarb Show documentation
Provides support for databases
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 extends Payload>[] payload() default {};
String message() default "";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy