Class AbstractResponseValidationParametersBuilder<T extends AbstractResponseValidationParametersBuilder<T>>
- java.lang.Object
-
- se.litsec.opensaml.common.validation.AbstractValidationParametersBuilder<T>
-
- se.litsec.opensaml.saml2.common.response.AbstractResponseValidationParametersBuilder<T>
-
- All Implemented Interfaces:
ValidationParametersBuilder
- Direct Known Subclasses:
AbstractAssertionValidationParametersBuilder
,ResponseValidationParametersBuilder
public abstract class AbstractResponseValidationParametersBuilder<T extends AbstractResponseValidationParametersBuilder<T>> extends AbstractValidationParametersBuilder<T>
Abstract builder class for building theValidationContext
object for use as validation input to theResponseValidator
.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 AbstractResponseValidationParametersBuilder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
authnRequest(AuthnRequest authnRequest)
Assigns theAuthnRequest
that was sent to give the message we are validating.T
authnRequestID(String authnRequestID)
Assigns the ID of theAuthnRequest
that was sent to give the message we are validating.T
expectedIssuer(String expectedIssuer)
Assigns the expected issuer to be used when checking the issuer of an element.T
receiveUrl(String receiveUrl)
Assigns the URL on which the message was received.-
Methods inherited from class se.litsec.opensaml.common.validation.AbstractValidationParametersBuilder
addDynamicParameter, addDynamicParameters, addStaticParameter, addStaticParameterIfMissing, addStaticParameters, allowedClockSkew, allowedClockSkew, build, dynamicParameter, getThis, maxAgeReceivedMessage, maxAgeReceivedMessage, receiveInstant, receiveInstant, signatureRequired, signatureValidationCriteriaSet, staticParameter, strictValidation
-
-
-
-
Method Detail
-
receiveUrl
public T receiveUrl(String receiveUrl)
Assigns the URL on which the message was received.- Parameters:
receiveUrl
- the URL- Returns:
- the builder
-
expectedIssuer
public T expectedIssuer(String expectedIssuer)
Assigns the expected issuer to be used when checking the issuer of an element.- Parameters:
expectedIssuer
- the issuer entityID- Returns:
- the builder
-
authnRequest
public T authnRequest(AuthnRequest authnRequest)
Assigns theAuthnRequest
that was sent to give the message we are validating.- Parameters:
authnRequest
- an AuthnRequest message- Returns:
- the builder
-
-