Estou passando alguns campos por URL não estou identificando a forma de configurar meu PATH
@Path("/InsereGuia/{CODSEQGUIA,DATAVIAGEM,IDORDEM,IDLINHA,IDFUNCIONARIO,TURNO}")
public class ViagemGuia {
@POST
@Produces("application/json")
@Consumes("application/json")
public String setViagens(@PathParam("CODSEQGUIA")String CODSEQGUIA,
@PathParam("DATAVIAGEM")String DATAVIAGEM,
@PathParam("IDORDEM")String IDORDEM,
@PathParam("IDLINHA")String IDLINHA,
@PathParam("IDFUNCIONARIO")String IDFUNCIONARIO,
@PathParam("TURNO")String TURNO){
Qual a definição para o PATH.
só encontro nos Foruns um único parametro.