Class AddNameIDToSubjects.NameIDPolicyLookupFunction
- java.lang.Object
-
- org.opensaml.saml.saml2.profile.impl.AddNameIDToSubjects.NameIDPolicyLookupFunction
-
- All Implemented Interfaces:
Function<ProfileRequestContext,SAMLObject>
- Enclosing class:
- AddNameIDToSubjects
public static class AddNameIDToSubjects.NameIDPolicyLookupFunction extends Object implements Function<ProfileRequestContext,SAMLObject>
Lookup function that returns theNameIDPolicyfrom anAuthnRequestmessage returned from a lookup function, by default the inbound message.
-
-
Field Summary
Fields Modifier and Type Field Description private Function<ProfileRequestContext,AuthnRequest>requestLookupStrategyStrategy used to locate theAuthnRequestto operate on.
-
Constructor Summary
Constructors Constructor Description NameIDPolicyLookupFunction()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SAMLObjectapply(ProfileRequestContext profileRequestContext)voidsetRequestLookupStrategy(Function<ProfileRequestContext,AuthnRequest> strategy)Set the strategy used to locate theAuthnRequestto examine.
-
-
-
Field Detail
-
requestLookupStrategy
@Nonnull private Function<ProfileRequestContext,AuthnRequest> requestLookupStrategy
Strategy used to locate theAuthnRequestto operate on.
-
-
Method Detail
-
setRequestLookupStrategy
public void setRequestLookupStrategy(@Nonnull Function<ProfileRequestContext,AuthnRequest> strategy)Set the strategy used to locate theAuthnRequestto examine.- Parameters:
strategy- strategy used to locate theAuthnRequest
-
apply
@Nullable public SAMLObject apply(@Nullable ProfileRequestContext profileRequestContext)
- Specified by:
applyin interfaceFunction<ProfileRequestContext,SAMLObject>
-
-