Interface RequestedAuthnContext

All Superinterfaces:
Serializable

public interface RequestedAuthnContext extends Serializable
This class represents a SAML 2.0 requested authentication context (i.e., RequestedAuthnContext XML element).
  • Method Summary

    Modifier and Type
    Method
    Description
    Get the authentication context class references (i.e., AuthnContextClassRef XML elements).
    Get the authentication context declaration references (i.e., AuthnContextDeclRef XML elements).
    Get the comparison (i.e., Comparison XML attribute).
  • Method Details

    • getComparison

      String getComparison()
      Get the comparison (i.e., Comparison XML attribute).
      Returns:
      The comparison.
    • getAuthnContextClassRefs

      List<String> getAuthnContextClassRefs()
      Get the authentication context class references (i.e., AuthnContextClassRef XML elements). If the requested authentication context has no authentication context class references, this method returns an empty list.
      Returns:
      The authentication context class references.
    • getAuthnContextDeclRefs

      List<String> getAuthnContextDeclRefs()
      Get the authentication context declaration references (i.e., AuthnContextDeclRef XML elements). If the requested authentication context has no authentication context declaration references, this method returns an empty list.
      Returns:
      The authentication context declaration references.