Interface ClientRegistration

  • All Implemented Interfaces:

    
    public interface ClientRegistration
    
                        

    Callback object to be used to proceed in user registration flow when registration credentials for the user in question have been obtained.

    To understand how JWT tokens work and how to generate one see application-authentication section of the online docs.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract Unit register(String jwtSignature) Method to call when registration credentials for the user have been obtained.
      abstract Unit registerFailed() Method to call if registration credentials could not be obtained.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • register

         abstract Unit register(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

         abstract Unit registerFailed()

        Method to call if registration credentials could not be obtained.