Advertisement
Guest User

Untitled

a guest
Mar 7th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   private void makeCustomer(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
  2.         String email = request.getParameter("email");
  3.         String username = request.getParameter("username");
  4.         String password = request.getParameter("password");
  5.        
  6.         d.createCustomer(email);
  7.         d.createUser(username, password, email);
  8.        
  9.         request.getRequestDispatcher("index.jsp").forward(request, response);
  10.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement