got it, I just redeclare it in the method:
@GET
@Produces( { MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })
@Path("{offset}/{limit}")
public Collection<PujCompetitionEntity> selectAll(
@PathParam("institution") String institution,
@PathParam("offset") int offset, @PathParam("limit") int limit) {
ok......