/*
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/AnnotationType.java to edit this template
|
*/
|
package com.megatim.fdxconvert.model.constraint;
|
|
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;
|
|
/**
|
*
|
* @author STEPHANIE
|
*/
|
@Documented
|
@Constraint(validatedBy = DecryptageAESValidator.class)
|
@Target( { ElementType.TYPE })
|
@Retention(RetentionPolicy.RUNTIME)
|
public @interface DecryptageAESConstraint {
|
String message() default "Le répertoire de dépôt doit être différent du repertoire d'origine du fichier";
|
Class<?>[] groups() default {};
|
Class<? extends Payload>[] payload() default {};
|
}
|