OidcStoreNamespace enum

Inheritance
Available extensions

Values

session → const OidcStoreNamespace

Stores ephemeral information, such as the current state id.

const OidcStoreNamespace('session')
state → const OidcStoreNamespace

Stores states.

on web, this MUST be stored in localStorage for the samePage navigation mode to work, since the html page has no access to the OidcStore object.

the key MUST be in the format: oidc.state.{key}

const OidcStoreNamespace('state')
stateResponse → const OidcStoreNamespace

Stores state responses.

on web, the key MUST be in the format: oidc.response.state.{key}

const OidcStoreNamespace('response.state')
request → const OidcStoreNamespace

Stores requests (mainly frontchannel logout).

const OidcStoreNamespace('request')
discoveryDocument → const OidcStoreNamespace

Stores discovery documents and jwks as json

const OidcStoreNamespace('discoveryDocument')
secureTokens → const OidcStoreNamespace

Identity Tokens, Access tokens, or any other token that requires secure storage.

const OidcStoreNamespace('secureTokens')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value String
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<OidcStoreNamespace>
A constant List of the values in this enum, in order of their declaration.