Enum AuthenticationScheme

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<AuthenticationScheme>

    public enum AuthenticationScheme
    extends java.lang.Enum<AuthenticationScheme>
    Enumeration that defines the available HTTP authentication schemes to be used when communicating with the Okta API server.

    The Authentication Scheme setting is helpful in cases where the code is run in a platform where the header information for outgoing HTTP requests is modified and thus causing communication issues.

    One of SSWS (Okta session bearer token) (or) OAUTH2 authentication schemes should be used for the management SDK, NONE should be used for unauthenticated requests.

    Since:
    0.5.0
    • Method Detail

      • values

        public static AuthenticationScheme[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (AuthenticationScheme c : AuthenticationScheme.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AuthenticationScheme valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getRequestAuthenticatorClassName

        public java.lang.String getRequestAuthenticatorClassName()