Class Authenticator

    • Constructor Detail

      • Authenticator

        public Authenticator()
    • Method Detail

      • getAuthorization

        public abstract String getAuthorization​(String requestUri,
                                                String authenticateHeader,
                                                String userName,
                                                String userPassword,
                                                String userRealm)
                                         throws AuthenticationException
        Generate the authorization header value that will be sent to the server.
        Parameters:
        requestUri - The request URI
        authenticateHeader - The server authentication header received
        userName - The user name
        userPassword - The user password
        userRealm - The realm for which the provided user name and password are valid. null to indicate all realms.
        Returns:
        The generated authorization header value
        Throws:
        AuthenticationException - When an error occurs
      • getSchemeName

        public abstract String getSchemeName()
        Get the authentication method.
        Returns:
        the authentication scheme
      • parseAuthenticateHeader

        public Map<String,​String> parseAuthenticateHeader​(String authenticateHeader)
        Utility method to parse the authentication header.
        Parameters:
        authenticateHeader - The server authenticate header received
        Returns:
        a map of authentication parameter names and values