/*
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Interface.java to edit this template
|
*/
|
package com.megatim.apifdxweb.service.ifaces;
|
|
import javax.annotation.security.PermitAll;
|
import javax.ws.rs.GET;
|
import javax.ws.rs.Path;
|
import javax.ws.rs.PathParam;
|
import javax.ws.rs.core.Context;
|
import javax.ws.rs.core.HttpHeaders;
|
import javax.ws.rs.core.Response;
|
|
/**
|
*
|
* @author ASUS
|
*/
|
public interface VerifyUser {
|
|
@GET
|
@PermitAll
|
public Response check(@Context HttpHeaders headers, @PathParam("code_type_fichier") String codeTypeFichier);
|
}
|