Class AuthenticationResult


  • public class AuthenticationResult
    extends Object
    Stores authentication token and client key used for proof of possession authentication.
    • Constructor Detail

      • AuthenticationResult

        public AuthenticationResult​(String authToken,
                                    String popKey)
        Constructor.
        Parameters:
        authToken - authentication token string.
        popKey - serialized json web key used for pop authentication.
    • Method Detail

      • getAuthToken

        public String getAuthToken()
        Retrieve stored authentication token.
        Returns:
        authentication token.
      • getPopKey

        public String getPopKey()
        Retrieve stored PoP key.
        Returns:
        proof of possession key.