Interface IReAuthHandler


public interface IReAuthHandler
An IAuthHandler implementation can implement this interface if it wishes to check whether a request should force re-authentication of the auth info.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Each IReAuthHandler attempts to determine if the supplied request should require re-authentication of the user credentials.
  • Method Details

    • shouldReAuth

      boolean shouldReAuth(HttpServletRequest request) throws FrameworkException
      Each IReAuthHandler attempts to determine if the supplied request should require re-authentication of the user credentials. This determination can come from a variety of places, and is designed to be completely pluggable.
      Parameters:
      request - the HttpServletRequest to check
      Returns:
      true if this request should re-authenticate the auth credentials, false otherwise.
      Throws:
      FrameworkException