Kenmegne
7 days ago 23a46b4be35277e06ec89f48730eeb694e686be8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 {
 
}