Class AbstractAssertionValidationParametersBuilder<T extends AbstractAssertionValidationParametersBuilder<T>>
- java.lang.Object
-
- se.litsec.opensaml.common.validation.AbstractValidationParametersBuilder<T>
-
- se.litsec.opensaml.saml2.common.response.AbstractResponseValidationParametersBuilder<T>
-
- se.litsec.opensaml.saml2.common.assertion.AbstractAssertionValidationParametersBuilder<T>
-
- All Implemented Interfaces:
ValidationParametersBuilder
- Direct Known Subclasses:
AssertionValidationParametersBuilder
public abstract class AbstractAssertionValidationParametersBuilder<T extends AbstractAssertionValidationParametersBuilder<T>> extends AbstractResponseValidationParametersBuilder<T>
Abstract builder class for building theValidationContext
object for use as validation input to theAssertionValidator
.The reason for all fiddling with generics is that we want to be able to subclass the builder classes.
- Author:
- Martin Lindström (martin.lindstrom@litsec.se)
-
-
Constructor Summary
Constructors Constructor Description AbstractAssertionValidationParametersBuilder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
authnRequestForceAuthn(Boolean forceAuthn)
Assigns theForceAuthn
flag from the correspondingAuthnRequest
.T
authnRequestIssueInstant(long issueInstant)
Assigns the issuance time for the correspondingAuthnRequest
when validating an assertion.T
authnRequestIssueInstant(Instant issueInstant)
Assigns the issuance time for the correspondingAuthnRequest
when validating an assertion.ValidationContext
build()
Adds default settings before invoking the super implementation.T
inResponseTo(String id)
T
maxAcceptedSsoSessionTime(long duration)
Assigns the maximum session time that we, as a SP, can accept when receiving assertions based on older authentications (SSO).T
maxAcceptedSsoSessionTime(Duration duration)
Assigns the maximum session time that we, as a SP, can accept when receiving assertions based on older authentications (SSO).T
responseIssueInstant(long instant)
Assigns the issue instant from the Response message that contained the assertion being validated.T
responseIssueInstant(Instant instant)
Assigns the issue instant from the Response message that contained the assertion being validated.T
subjectConfirmationCheckAddess(boolean flag)
T
subjectLocalityCheckAddress(boolean flag)
T
validAddresses(String... addresses)
Assigns the valid addresses that we allow the user agent to have.T
validAddresses(InetAddress... addresses)
Assigns the valid addresses that we allow the user agent to have.T
validAudiences(String... audiences)
Assigns the entityID:s of the valid audiences.T
validRecipients(String... recipients)
Assigns the valid URLs for the intended recipients.-
Methods inherited from class se.litsec.opensaml.saml2.common.response.AbstractResponseValidationParametersBuilder
authnRequest, authnRequestID, expectedIssuer, receiveUrl
-
Methods inherited from class se.litsec.opensaml.common.validation.AbstractValidationParametersBuilder
addDynamicParameter, addDynamicParameters, addStaticParameter, addStaticParameterIfMissing, addStaticParameters, allowedClockSkew, allowedClockSkew, dynamicParameter, getThis, maxAgeReceivedMessage, maxAgeReceivedMessage, receiveInstant, receiveInstant, signatureRequired, signatureValidationCriteriaSet, staticParameter, strictValidation
-
-
-
-
Method Detail
-
build
public ValidationContext build()
Adds default settings before invoking the super implementation.- Specified by:
build
in interfaceValidationParametersBuilder
- Overrides:
build
in classAbstractValidationParametersBuilder<T extends AbstractAssertionValidationParametersBuilder<T>>
- Returns:
- the ValidationContext object
-
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(InetAddress... addresses)
Assigns the valid addresses that we allow the user agent to have.See also
subjectConfirmationCheckAddess(boolean)
andsubjectLocalityCheckAddress(boolean)
.- Parameters:
addresses
- one or more IP addresses- 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 theForceAuthn
flag from the correspondingAuthnRequest
.- Parameters:
forceAuthn
- true/false- Returns:
- the builder
-
authnRequestIssueInstant
public T authnRequestIssueInstant(Instant issueInstant)
Assigns the issuance time for the correspondingAuthnRequest
when validating an assertion.- Parameters:
issueInstant
- issue time- Returns:
- the builder
-
authnRequestIssueInstant
public T authnRequestIssueInstant(long issueInstant)
Assigns the issuance time for the correspondingAuthnRequest
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
-
-