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/ReferentielToImportData.java | 69 ++++++++++++++++++++++++++++++++++
1 files changed, 69 insertions(+), 0 deletions(-)
diff --git a/fdx-commons/fdxcommons-model/src/main/java/com/megatim/fdxcommons/model/pojo/ReferentielToImportData.java b/fdx-commons/fdxcommons-model/src/main/java/com/megatim/fdxcommons/model/pojo/ReferentielToImportData.java
new file mode 100644
index 0000000..80c1a9b
--- /dev/null
+++ b/fdx-commons/fdxcommons-model/src/main/java/com/megatim/fdxcommons/model/pojo/ReferentielToImportData.java
@@ -0,0 +1,69 @@
+package com.megatim.fdxcommons.model.pojo;
+
+import com.megatim.fdxcommons.model.integration.TableDefinition;
+import com.megatim.fdxcommons.model.integration.json.TypeFichierJson;
+import com.megatim.fdxcommons.model.referentiel.ApplicationSource;
+import com.megatim.fdxcommons.model.referentiel.ExtensionFichier;
+import com.megatim.fdxcommons.model.referentiel.GroupeNoeud;
+import com.megatim.fdxcommons.model.referentiel.GroupeParticipant;
+import com.megatim.fdxcommons.model.referentiel.Noeud;
+import com.megatim.fdxcommons.model.referentiel.Participant;
+import com.megatim.fdxcommons.model.referentiel.Pays;
+import com.megatim.fdxcommons.model.referentiel.Referentiel;
+import com.megatim.fdxcommons.model.referentiel.Routage;
+import com.megatim.fdxcommons.model.referentiel.StructureLigne;
+import com.megatim.fdxcommons.model.referentiel.TypeFichier;
+import com.megatim.fdxcommons.model.referentiel.ValidateurFichier;
+import com.megatim.fdxcommons.model.referentiel.ValidateurFichierConfiguration;
+import com.megatim.fdxcommons.model.referentiel.natureproduction.NatureProductionFichier;
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.List;
+import lombok.Getter;
+import lombok.Setter;
+
+/**
+ *
+ * @author ASUS
+ */
+@Getter
+@Setter
+public class ReferentielToImportData implements Serializable {
+
+ private List<ApplicationSource> applicationSources = new ArrayList<>();
+
+ private List<ExtensionFichier> extensionFichiers = new ArrayList<>();
+
+ private List<GroupeNoeud> groupeNoeuds = new ArrayList<>();
+
+ private List<GroupeParticipant> groupeParticipants = new ArrayList<>();
+
+ private List<Noeud> noeuds = new ArrayList<>();
+
+ private List<Participant> participants = new ArrayList<>();
+
+ private List<Pays> pays = new ArrayList<>();
+
+ private List<Referentiel> referentiels = new ArrayList<>();
+
+ private List<Routage> routages = new ArrayList<>();
+
+ private List<StructureLigne> structureLignes = new ArrayList<>();
+
+ private List<TypeFichier> typeFichiers = new ArrayList<>();
+
+ private List<ValidateurFichierConfiguration> validateurFichierConfigurations = new ArrayList<>();
+
+ private List<ValidateurFichier> validateurFichiers = new ArrayList<>();
+
+ private List<TableDefinition> tableDefinitions = new ArrayList<>();
+
+ private List<NatureProductionFichier> natureProductionFichiers = new ArrayList<>();
+
+ private List<TypeFichierJson> typeFichiersJson = new ArrayList<>();
+
+ private Referentiel referentielEnCours;
+
+ private String fileName;
+
+}
--
Gitblit v1.10.0