@Path("/{id}")
 @POST // PUT Doesn't seem to make it through the portal :-(
 public void updateSignup(
     @PathParam("id") final String signupId, @FormParam("status") final Status status) {
   checkAuthenticated();
   courseService.setSignupStatus(signupId, status);
 }