package com.megatim.fdxconsultation.service.ifaces.settings;
|
|
import javax.ws.rs.GET;
|
import javax.ws.rs.Path;
|
import javax.ws.rs.Produces;
|
import javax.ws.rs.core.Context;
|
import javax.ws.rs.core.HttpHeaders;
|
import javax.ws.rs.core.MediaType;
|
import javax.ws.rs.core.Response;
|
|
/**
|
*
|
* @author Gabuntu
|
*/
|
public interface SettingRS {
|
|
@GET
|
@Produces({MediaType.APPLICATION_JSON})
|
@Path("current-referentiel")
|
public Response currentReferentiel(@Context HttpHeaders headers);
|
|
}
|