Interface AuthenticationRegistry

All Known Implementing Classes:
AuthenticationRegistryImpl

public interface AuthenticationRegistry
Temporary registry for hold credentials (and potentially other attributes) during login process.
Author:
Marek Posolda
  • Method Details

    • getCredentials

      org.gatein.wci.security.Credentials getCredentials(jakarta.servlet.http.HttpServletRequest request)
    • setCredentials

      void setCredentials(jakarta.servlet.http.HttpServletRequest request, org.gatein.wci.security.Credentials credentials)
    • removeCredentials

      org.gatein.wci.security.Credentials removeCredentials(jakarta.servlet.http.HttpServletRequest request)
    • removeClient

      void removeClient(String sessionId)
    • setAttributeOfClient

      void setAttributeOfClient(jakarta.servlet.http.HttpServletRequest request, String attributeName, Object attributeValue)
    • getAttributeOfClient

      Object getAttributeOfClient(jakarta.servlet.http.HttpServletRequest request, String attributeName)
    • removeAttributeOfClient

      Object removeAttributeOfClient(jakarta.servlet.http.HttpServletRequest request, String attributeName)