@RequestMapping(value = "/{id}", method = RequestMethod.GET, produces = "application/json")
 @ResponseBody
 public PurchaseRequest get(@PathVariable String id) throws WebServiceException {
   System.out.println("AuthorizationRequestController.get");
   PurchaseRequest response = purchaseRequestManager.get(id);
   return response;
 }