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-service-impl/src/main/java/com/megatim/fdxcommons/service/impl/JAXRSConfiguration.java | 28 ++++++++++++++++++++++++++++
1 files changed, 28 insertions(+), 0 deletions(-)
diff --git a/fdx-commons/fdxcommons-service-impl/src/main/java/com/megatim/fdxcommons/service/impl/JAXRSConfiguration.java b/fdx-commons/fdxcommons-service-impl/src/main/java/com/megatim/fdxcommons/service/impl/JAXRSConfiguration.java
new file mode 100644
index 0000000..803738d
--- /dev/null
+++ b/fdx-commons/fdxcommons-service-impl/src/main/java/com/megatim/fdxcommons/service/impl/JAXRSConfiguration.java
@@ -0,0 +1,28 @@
+package com.megatim.fdxcommons.service.impl;
+
+import io.swagger.annotations.Contact;
+import io.swagger.annotations.Info;
+import io.swagger.annotations.SwaggerDefinition;
+import javax.ws.rs.ApplicationPath;
+import javax.ws.rs.core.Application;
+
+/**
+ * Configures JAX-RS for the application.
+ *
+ * @author Leonel FOFOU
+ */
+@ApplicationPath("fdx-commons")
+@SwaggerDefinition(info = @Info(
+ title = "Financial Data Exchange API",
+ description = "API Web pour l'interfaçage des fichiers de la plateforme Fdx",
+ version = "1.0.0",
+ contact = @Contact(
+ name = "Megatim group",
+ email = "contact@megatimgroup.com",
+ url = "http://megatimgroup.com"
+ )
+ )
+)
+public class JAXRSConfiguration extends Application {
+
+}
--
Gitblit v1.10.0