Class TokenRequestAuthTimeLookupFunction
- java.lang.Object
-
- net.shibboleth.idp.plugin.oidc.op.profile.context.navigate.AbstractTokenClaimsLookupFunction<Instant>
-
- net.shibboleth.idp.plugin.oidc.op.profile.context.navigate.TokenRequestAuthTimeLookupFunction
-
- All Implemented Interfaces:
Function<ProfileRequestContext,Instant>,ContextDataLookupFunction<ProfileRequestContext,Instant>
public class TokenRequestAuthTimeLookupFunction extends AbstractTokenClaimsLookupFunction<Instant>
For Token and UserInfo end points. A function that returns auth time via a lookup function. This lookup locates auth time from token for token request handling. If token claims are not available, null is returned.
-
-
Constructor Summary
Constructors Constructor Description TokenRequestAuthTimeLookupFunction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) InstantdoLookup(TokenClaimsSet tokenClaims)Implemented to perform the actual lookup.-
Methods inherited from class net.shibboleth.idp.plugin.oidc.op.profile.context.navigate.AbstractTokenClaimsLookupFunction
apply
-
-
-
-
Method Detail
-
doLookup
@Nullable Instant doLookup(@Nonnull TokenClaimsSet tokenClaims)
Implemented to perform the actual lookup.- Specified by:
doLookupin classAbstractTokenClaimsLookupFunction<Instant>- Parameters:
tokenClaims- token claims set to perform the lookup from.- Returns:
- lookup value.
-
-