@Override
 protected void doGet(HttpServletRequest req, HttpServletResponse resp)
     throws ServletException, IOException {
   req.setAttribute("deposits", DEPOSIT_CACHE.values());
   RequestDispatcher dispatcher = req.getRequestDispatcher("/views/deposit/DepositView.jsp");
   dispatcher.forward(req, resp);
 }