From b3d0580439b9a00c7eb918085de1694151066004 Mon Sep 17 00:00:00 2001
From: Kenmegne <stephanie.kenmegne@gmail.com>
Date: Thu, 18 Jun 2026 16:02:49 +0000
Subject: [PATCH] rename packages

---
 fdx_convert/src/main/java/com/megatim/fdxconvert/model/constraint/KeyToDecryptConstraint.java |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/fdx_convert/src/main/java/com/megatim/fdxconvert/model/constraint/KeyToDecryptConstraint.java b/fdx_convert/src/main/java/com/megatim/fdxconvert/model/constraint/KeyToDecryptConstraint.java
new file mode 100644
index 0000000..cfe5d99
--- /dev/null
+++ b/fdx_convert/src/main/java/com/megatim/fdxconvert/model/constraint/KeyToDecryptConstraint.java
@@ -0,0 +1,27 @@
+/*
+ * 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 = KeyToDecryptValidator.class)
+@Target( { ElementType.TYPE })
+@Retention(RetentionPolicy.RUNTIME)
+public @interface KeyToDecryptConstraint {
+    String message() default "La clé est sa confirmation doivent être non nulles avoir la même valeur";
+    Class<?>[] groups() default {};
+    Class<? extends Payload>[] payload() default {};
+}

--
Gitblit v1.10.0