Interface RegistrationCacheStore


public interface RegistrationCacheStore
When a webauthn register request workflow starts, we need a cache store to store and pull data from the flow.
  • Method Summary

    Modifier and Type
    Method
    Description
    get(com.yubico.webauthn.data.ByteArray id)
     
    void
    put(com.yubico.webauthn.data.ByteArray id, RegistrationRequest registrationRequest)
     
    boolean
    remove(com.yubico.webauthn.data.ByteArray id)
     
  • Method Details

    • get

      Optional<RegistrationRequest> get(com.yubico.webauthn.data.ByteArray id)
    • put

      void put(com.yubico.webauthn.data.ByteArray id, RegistrationRequest registrationRequest)
    • remove

      boolean remove(com.yubico.webauthn.data.ByteArray id)