Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

LoginController extends Spring SimpleFormHandler and looks something like this:

Code Block
titleLoginControler excerpt
  protected ModelAndView processFormSubmission(final HttpServletRequest request, final HttpServletResponse response, final Object object,
        final BindException errors) throws Exception {
        final Credentials credentials = (Credentials)object;
        
        this.credentialsBinder.bind(request, credentials);

        final String ticketGrantingTicketId = this.centralAuthenticationService.createTicketGrantingTicket(credentials);

...