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/pojo/DataInMemory.java |   38 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 38 insertions(+), 0 deletions(-)

diff --git a/fdx-commons/fdxcommons-model/src/main/java/com/megatim/fdxcommons/model/pojo/DataInMemory.java b/fdx-commons/fdxcommons-model/src/main/java/com/megatim/fdxcommons/model/pojo/DataInMemory.java
new file mode 100644
index 0000000..98c1311
--- /dev/null
+++ b/fdx-commons/fdxcommons-model/src/main/java/com/megatim/fdxcommons/model/pojo/DataInMemory.java
@@ -0,0 +1,38 @@
+/*
+ * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
+ * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
+ */
+package com.megatim.fdxcommons.model.pojo;
+
+import com.megatim.fdxcommons.model.integration.ColumnDefinition;
+import com.megatim.fdxcommons.model.referentiel.Referentiel;
+import com.megatim.fdxcommons.model.referentiel.TypeFichier;
+import com.megatim.fdxcommons.model.referentiel.natureproduction.NatureProductionFichier;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Set;
+import lombok.Getter;
+import lombok.NoArgsConstructor;
+import lombok.Setter;
+
+/**
+ *
+ * @author ASUS
+ */
+@Getter
+@Setter
+@NoArgsConstructor
+public class DataInMemory {
+
+    private Referentiel referentielEnCours;
+
+    private Map<String, TypeFichier> codeTypeFichierToTypeFichiers = new HashMap<>();
+
+    private Map<String, Map<String, ColumnDefinition>> typeFichierToColumnDefinitions = new HashMap<>();
+    
+    private Map<String, NatureProductionFichier> typeFichierToNatureProductionsFichiers = new HashMap<>();
+    
+    private Map<String, Set<String>> typeFichierToParticipantsEnvoi = new HashMap<>();
+    
+    private Map<String, Set<String>> typeFichierToParticipantsReception = new HashMap<>();
+}

--
Gitblit v1.10.0