Class AuthenticationDiagnostic

java.lang.Object
org.alfresco.repo.security.authentication.AuthenticationDiagnostic
All Implemented Interfaces:
Serializable

public class AuthenticationDiagnostic extends Object implements Serializable
Diagnostic information for a failed authentication. Contains a list of steps which have failed or succeeded. The key and arguments can be used to form human readable messages from a message bundle.
See Also:
  • Field Details

  • Constructor Details

    • AuthenticationDiagnostic

      public AuthenticationDiagnostic()
  • Method Details

    • addStep

      public void addStep(AuthenticationStep step)
    • addStep

      public void addStep(String key, boolean success)
      Parameters:
      key - String
      success - boolean
    • addStep

      public void addStep(String key, boolean success, Object[] args)
      Parameters:
      key - String
      success - boolean
      args - Object[]
    • getSteps

      public List<AuthenticationStep> getSteps()