From 23a46b4be35277e06ec89f48730eeb694e686be8 Mon Sep 17 00:00:00 2001
From: Kenmegne <stephanie.kenmegne@gmail.com>
Date: Thu, 18 Jun 2026 15:40:06 +0000
Subject: [PATCH] add fdx-commons and fdx-consultation

---
 fdx-commons/fdxcommons-model/src/main/java/com/megatim/fdxcommons/model/enumeration/EtatOperation.java |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 insertions(+), 0 deletions(-)

diff --git a/fdx-commons/fdxcommons-model/src/main/java/com/megatim/fdxcommons/model/enumeration/EtatOperation.java b/fdx-commons/fdxcommons-model/src/main/java/com/megatim/fdxcommons/model/enumeration/EtatOperation.java
new file mode 100644
index 0000000..4fe44c6
--- /dev/null
+++ b/fdx-commons/fdxcommons-model/src/main/java/com/megatim/fdxcommons/model/enumeration/EtatOperation.java
@@ -0,0 +1,28 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.megatim.fdxcommons.model.enumeration;
+
+import com.fasterxml.jackson.annotation.JsonValue;
+
+public enum EtatOperation {
+    
+    ATTENTE_VALIDATION("ATTENTE VALIDATION"),
+    ACTIF("ACTIF"),
+    REJETE("REJETE"),
+    INNACTIF("INNACTIF");
+
+    private final String etat;
+
+    private EtatOperation(String etat) {
+        this.etat = etat;
+    }
+
+    @JsonValue
+    public String getEtat() {
+        return etat;
+    }
+
+}

--
Gitblit v1.10.0