Options
All
  • Public
  • Public/Protected
  • All
Menu

OIDC Adapter that calls the corresponding functions of the source Adapter. Can be extended by adapters that do not want to override all functions by implementing a decorator pattern.

Hierarchy

Implements

  • Adapter

Index

Constructors

Properties

name: string
source: Adapter

Methods

  • consume(id: string): Promise<undefined | void>
  • destroy(id: string): Promise<undefined | void>
  • find(id: string): Promise<undefined | void | AdapterPayload>
  • findByUid(uid: string): Promise<undefined | void | AdapterPayload>
  • findByUserCode(userCode: string): Promise<undefined | void | AdapterPayload>
  • revokeByGrantId(grantId: string): Promise<undefined | void>
  • upsert(id: string, payload: AdapterPayload, expiresIn: number): Promise<undefined | void>