Options
All
  • Public
  • Public/Protected
  • All
Menu

Class FRCallback

Base class for authentication tree callback wrappers.

Hierarchy

Index

Constructors

constructor

Properties

payload

payload: Callback

The raw payload returned by OpenAM

Methods

getInputValue

  • getInputValue(selector?: number | string): unknown
  • Gets the value of the specified input element, or the first element if selector is not provided.

    Parameters

    • Default value selector: number | string = 0

      The index position or name of the desired element

    Returns unknown

getOutputByName

  • getOutputByName<T>(name: string, defaultValue: T): T

getOutputValue

  • getOutputValue(selector?: number | string): unknown
  • Gets the value of the specified output element, or the first element if selector is not provided.

    Parameters

    • Default value selector: number | string = 0

      The index position or name of the desired element

    Returns unknown

getType

  • getType(): string

setInputValue

  • setInputValue(value: unknown, selector?: number | string | RegExp): void
  • Sets the value of the specified input element, or the first element if selector is not provided.

    Parameters

    • value: unknown
    • Default value selector: number | string | RegExp = 0

      The index position or name of the desired element

    Returns void