Ejemplo n.º 1
0
 /*Borrower*/
 @RequestMapping(
     value = "/getBooksByBranch",
     method = {RequestMethod.GET, RequestMethod.POST},
     produces = "application/json",
     consumes = "application/json")
 public List<Book> getBooksByBranch(@RequestBody Branch branch) {
   Branch b = branchdao.getBranchById(branch.getBranchId());
   return b.getBooks();
 }