Class AbstractAssertionValidationParametersBuilder<T extends AbstractAssertionValidationParametersBuilder<T>>

    • Constructor Detail

      • AbstractAssertionValidationParametersBuilder

        public AbstractAssertionValidationParametersBuilder()
    • Method Detail

      • responseIssueInstant

        public T responseIssueInstant​(Instant instant)
        Assigns the issue instant from the Response message that contained the assertion being validated.
        Parameters:
        instant - the response issue instant
        Returns:
        the builder
      • responseIssueInstant

        public T responseIssueInstant​(long instant)
        Assigns the issue instant from the Response message that contained the assertion being validated.
        Parameters:
        instant - the response issue instant
        Returns:
        the builder
      • validRecipients

        public T validRecipients​(String... recipients)
        Assigns the valid URLs for the intended recipients.
        Parameters:
        recipients - one or more URLs
        Returns:
        the builder
      • validAddresses

        public T validAddresses​(String... addresses)
        Assigns the valid addresses that we allow the user agent to have.
        Parameters:
        addresses - one or more IP addresses (in string format)
        Returns:
        the builder
      • subjectConfirmationCheckAddess

        public T subjectConfirmationCheckAddess​(boolean flag)
      • subjectLocalityCheckAddress

        public T subjectLocalityCheckAddress​(boolean flag)
      • validAudiences

        public T validAudiences​(String... audiences)
        Assigns the entityID:s of the valid audiences.
        Parameters:
        audiences - the audiences
        Returns:
        the builder
      • authnRequestForceAuthn

        public T authnRequestForceAuthn​(Boolean forceAuthn)
        Assigns the ForceAuthn flag from the corresponding AuthnRequest.
        Parameters:
        forceAuthn - true/false
        Returns:
        the builder
      • authnRequestIssueInstant

        public T authnRequestIssueInstant​(Instant issueInstant)
        Assigns the issuance time for the corresponding AuthnRequest when validating an assertion.
        Parameters:
        issueInstant - issue time
        Returns:
        the builder
      • authnRequestIssueInstant

        public T authnRequestIssueInstant​(long issueInstant)
        Assigns the issuance time for the corresponding AuthnRequest when validating an assertion.
        Parameters:
        issueInstant - issue time (in milliseconds since epoch)
        Returns:
        the builder
      • maxAcceptedSsoSessionTime

        public T maxAcceptedSsoSessionTime​(long duration)
        Assigns the maximum session time that we, as a SP, can accept when receiving assertions based on older authentications (SSO).
        Parameters:
        duration - milliseconds
        Returns:
        the builder
      • maxAcceptedSsoSessionTime

        public T maxAcceptedSsoSessionTime​(Duration duration)
        Assigns the maximum session time that we, as a SP, can accept when receiving assertions based on older authentications (SSO).
        Parameters:
        duration - max session time
        Returns:
        the builder
      • inResponseTo

        public T inResponseTo​(String id)