Class ProviderMetadataStringValuesLookupFunction
- java.lang.Object
-
- net.shibboleth.oidc.profile.config.navigate.ProviderMetadataStringValuesLookupFunction
-
- All Implemented Interfaces:
Function<com.nimbusds.openid.connect.sdk.op.OIDCProviderMetadata,List<String>>
public class ProviderMetadataStringValuesLookupFunction extends Object implements Function<com.nimbusds.openid.connect.sdk.op.OIDCProviderMetadata,List<String>>
Fetches the values for the configured key asString. May return an empty list if the value is not found or the givenOIDCProviderMetadataisnull.
-
-
Constructor Summary
Constructors Constructor Description ProviderMetadataStringValuesLookupFunction(String name)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>apply(com.nimbusds.openid.connect.sdk.op.OIDCProviderMetadata metadata)
-
-
-
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
-
ProviderMetadataStringValuesLookupFunction
public ProviderMetadataStringValuesLookupFunction(@ParameterName(name="keyName") @Nonnull String name)
Constructor.- Parameters:
name- The key for which to fetch the value for.
-
-