/*
|
* 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.apifdxweb.service.impl.connexion;
|
|
import javax.annotation.security.PermitAll;
|
import javax.ws.rs.POST;
|
import javax.ws.rs.Path;
|
import javax.ws.rs.Produces;
|
import javax.ws.rs.core.MediaType;
|
import javax.ws.rs.core.Response;
|
|
/**
|
*
|
* @author ASUS
|
*/
|
@Path("connexion")
|
public class ConnexionRS {
|
|
public ConnexionRS() {
|
}
|
|
@POST
|
@Produces({MediaType.APPLICATION_JSON})
|
@Path("test")
|
@PermitAll
|
public Response tesConnexion() {
|
return Response.ok().build();
|
}
|
}
|