package com.megatim.fdxconsultation.service.ifaces.integration; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.PathParam; 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 ColumnDefinitionResource { @GET @Produces({MediaType.APPLICATION_JSON}) @Path("/{codeTypeFichier}/{referentielVersion}") public Response columnDefinitions(@Context HttpHeaders headers, @PathParam("codeTypeFichier") String codeTypeFichier, @PathParam("referentielVersion") String referentielVersion); }