@RequestMapping(value = "", method = RequestMethod.GET, produces = "application/json")
 @ResponseBody
 public List<PurchaseRequest> getAll() throws WebServiceException {
   System.out.println("AuthorizationRequestController.getAll");
   List<PurchaseRequest> response = purchaseRequestManager.getAll();
   return response;
 }