Class ClientInformationStringValueLookupFunction
- java.lang.Object
-
- net.shibboleth.oidc.profile.config.navigate.ClientInformationStringValueLookupFunction
-
- All Implemented Interfaces:
Function<com.nimbusds.openid.connect.sdk.rp.OIDCClientInformation,String>
public class ClientInformationStringValueLookupFunction extends Object implements Function<com.nimbusds.openid.connect.sdk.rp.OIDCClientInformation,String>
Fetches the value for the configured key asString. May benullif the value is not found or the givenOIDCClientInformationor its metadata is null.
-
-
Constructor Summary
Constructors Constructor Description ClientInformationStringValueLookupFunction(String name)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringapply(com.nimbusds.openid.connect.sdk.rp.OIDCClientInformation information)
-
-
-
Field Detail
-
log
@Nonnull private final org.slf4j.Logger log
Class logger.
-
keyName
@Nonnull private final String keyName
The key for which to fetch the value for.
-
-
Constructor Detail
-
ClientInformationStringValueLookupFunction
public ClientInformationStringValueLookupFunction(@ParameterName(name="keyName") @Nonnull String name)
Constructor.- Parameters:
name- The key for which to fetch the value for.
-
-