Interface AutoLogin

All Known Implementing Classes:
BaseAutoLogin

public interface AutoLogin
Author:
Brian Wing Shun Chan
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Set a request attribute with this variable to tell the AutoLoginFilter to stop processing filters and redirect the user to a specified location.
    static final String
    Set a request attribute with this variable to tell the AutoLoginFilter to continue processing filters and then redirect the user to a specified location.
  • Method Summary

    Modifier and Type
    Method
    Description
    login(javax.servlet.http.HttpServletRequest httpServletRequest, javax.servlet.http.HttpServletResponse httpServletResponse)
     
  • Field Details

    • AUTO_LOGIN_REDIRECT

      static final String AUTO_LOGIN_REDIRECT
      Set a request attribute with this variable to tell the AutoLoginFilter to stop processing filters and redirect the user to a specified location.
      See Also:
    • AUTO_LOGIN_REDIRECT_AND_CONTINUE

      static final String AUTO_LOGIN_REDIRECT_AND_CONTINUE
      Set a request attribute with this variable to tell the AutoLoginFilter to continue processing filters and then redirect the user to a specified location.
      See Also:
  • Method Details