Class WwwAuthenticateHeader.Challenge

java.lang.Object
org.forgerock.http.header.WwwAuthenticateHeader.Challenge
Enclosing class:
WwwAuthenticateHeader

public static class WwwAuthenticateHeader.Challenge extends Object
A single WWW-Authenticate challenge.
See Also:
  • Field Details

    • scheme

      public final String scheme
      The type of the authentication option.
    • realm

      public final String realm
      The realm of the authentication option.
    • parameters

      public final Map<String,String> parameters
      Any additional options that the type requires.
  • Constructor Details

    • Challenge

      public Challenge(String scheme, String realm, Map<String,String> parameters)
      Create a new authentication option.
      Parameters:
      scheme - The scheme of the challenge.
      realm - The realm of the challenge (may be null).
      parameters - Any additional options that the type requires.
  • Method Details