Interface SingleUseObjectValueModel

All Known Implementing Classes:
DefaultActionToken, ExecuteActionsActionToken, IdpVerifyAccountLinkActionToken, ResetCredentialsActionToken, SingleUseObjectValueEntity, UpdateEmailActionToken, VerifyEmailActionToken

public interface SingleUseObjectValueModel
This model represents contents of an action token shareable among Keycloak instances in the cluster.
Author:
hmlnarik
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns value of the given note (or null when no note of this name is present)
    Returns unmodifiable map of all notes.
  • Method Details

    • getNotes

      Map<String,String> getNotes()
      Returns unmodifiable map of all notes.
      Returns:
      see description. Returns empty map if no note is set, never returns null.
    • getNote

      String getNote(String name)
      Returns value of the given note (or null when no note of this name is present)
      Returns:
      see description