Identity Broker Documentation Index
Configuration Reference Home

Token Store

Note: this is an abstract component that cannot be instantiated.

Token Stores define a repository for authorization codes and tokens for the OAuth 2 services.

The OAuth 2 authorization, token, and verification services use the Token Store to generate, persist, and lookup these codes and tokens for the resource owner and the requesting application.

Direct Subcomponents
Relations From this Component
Properties
dsconfig Usage

Direct Subcomponents

The following Token Stores are available in the server :

These Token Stores inherit from the properties described below.

Relations to This Component

The following components have a direct aggregation relation to Token Stores:

Properties

The properties supported by this managed object are as follows:


Basic Properties: Advanced Properties:
↓ description  None
↓ java-class

Basic Properties

description

Description
A description for this Token Store
Default Value
None
Allowed Values
A string
Multi-Valued
No
Required
No
Admin Action Required
None. Modification requires no further action

java-class (Read-Only)

Description
Specifies the fully-qualified name of the Java class of the token store implementation.
Default Value
None
Allowed Values
The fully-qualified name of a Java class that extends or implements com.unboundid.directory.broker.core.TokenStore
Multi-Valued
No
Required
Yes
Admin Action Required
None. Modification requires no further action


dsconfig Usage

To list the configured Token Stores:

dsconfig list-token-stores
     [--property {propertyName}] ...

To view the configuration for an existing Token Store:

dsconfig get-token-store-prop
     --store-name {name}
     [--tab-delimited]
     [--script-friendly]
     [--property {propertyName}] ...

To update the configuration for an existing Token Store:

dsconfig set-token-store-prop
     --store-name {name}
     (--set|--add|--remove) {propertyName}:{propertyValue}
     [(--set|--add|--remove) {propertyName}:{propertyValue}] ...

To delete an existing Token Store:

dsconfig delete-token-store
     --store-name {name}