Class AccountController


@Controller @Lazy public class AccountController extends AbstractAccountController
  • Field Details

  • Constructor Details

    • AccountController

      public AccountController()
  • Method Details

    • getHome

      @RequestMapping(value="/byid/{accountId}", method=GET) public String getHome(@PathVariable Long accountId, org.springframework.ui.Model model) throws AccountNotFoundException
      Throws:
      AccountNotFoundException
    • getStatement

      @RequestMapping(value="/byid/{accountId}/statement", method=GET) public String getStatement(@PathVariable Long accountId, org.springframework.ui.Model model) throws AccountNotFoundException
      Throws:
      AccountNotFoundException
    • activate

      @RequestMapping(value="/byid/{accountId}/activate", method=POST) @Transactional public org.springframework.web.servlet.ModelAndView activate(@PathVariable Long accountId) throws AccountNotFoundException
      Throws:
      AccountNotFoundException
    • deactivate

      @RequestMapping(value="/byid/{accountId}/deactivate", method=POST) @Transactional public org.springframework.web.servlet.ModelAndView deactivate(@PathVariable Long accountId, org.springframework.ui.Model model) throws AccountNotFoundException
      Throws:
      AccountNotFoundException
    • getAuthenticationManager

      public org.springframework.security.authentication.AuthenticationManager getAuthenticationManager()
    • setAuthenticationManager

      public void setAuthenticationManager(org.springframework.security.authentication.AuthenticationManager authenticationManager)