Is this the right way to have multiple parameters for a REST API ?
@GET
@Path("/id/{userId,type,date}")
@Nullable
@Produces(MediaType.APPLICATION_JSON)
List<Exercise> findExercises(
@ApiParam( value = "User ID", required=true) @PathParam("userId") Long userId,
@ApiParam( value = "Type") @PathParam("type") String type,
@ApiParam( value = "Date") @PathParam("date") String date);
If not, how can i accomplish that?