This class defines an API that may be implemented by Data Governance Server
extensions that validate externally generated access tokens. Implementing
extensions that support this API enables the Data Governance Server
to accept access tokens generated from external Identity Providers.
Configuring Access Token Validators
In order to configure an Access Token Validator created using this API, use
a command like:
dsconfig create-token-validator \
---validator-name "{name}" \
--type third-party \
--set "extension-class:{class-name}" \
--set "extension-argument:{name=value}"
where "
{name}" is the name to use for the Access Token Validator
instance, "
{class-name}" is the fully-qualified name of the Java class
that extends
com.unboundid.directory.sdk.proxy.api.AccessTokenValidator
,
and "
{name=value}" represents name-value pairs for any arguments to
provide to the Access Token Validator. If multiple arguments should be
provided to the extension, then the
"
--set extension-argument:{name=value}
" option should be
provided multiple times.