Interface ClientRegistration


  • public interface ClientRegistration
    Callback object to be used to proceed in user registration/setup when registration credentials for the user in question have been obtained.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void register​(java.lang.String jwtSignature)
      Method to call when registration credentials for the user have been obtained.
      void registerFailed()
      Method to call if registration credentials could not be obtained.
    • Method Detail

      • register

        void register​(java.lang.String jwtSignature)
        Method to call when registration credentials for the user have been obtained.
        Parameters:
        jwtSignature - Signed JWT token for this app's instance
      • registerFailed

        void registerFailed()
        Method to call if registration credentials could not be obtained.