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

com.github.ldeitos.validation.annotation.SkipValidation Maven / Gradle / Ivy

Go to download

Extension for BeanValidation API Core. Content interfaces, qualifiers and constraints definitions. This version is Java 17 and JakartaEE 10 compatible.

The newest version!
package com.github.ldeitos.validation.annotation;

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

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

/**
 * Identify a parameter to be skipped on validation process.
 *
 * @author Leandro Deitos
 *
 * @since 0.9.2
 */
@Retention(RUNTIME)
@Target(PARAMETER)
public @interface SkipValidation {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy