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 {
|
|
}
|