Enum AuthenticationTypeId

java.lang.Object
java.lang.Enum<AuthenticationTypeId>
net.avalara.avatax.rest.client.enums.AuthenticationTypeId
All Implemented Interfaces:
Serializable, Comparable<AuthenticationTypeId>, java.lang.constant.Constable

public enum AuthenticationTypeId extends Enum<AuthenticationTypeId>
Represents the type of authentication provided to the API call
  • Enum Constant Details

    • None

      public static final AuthenticationTypeId None
      This API call was not authenticated.
    • UsernamePassword

      public static final AuthenticationTypeId UsernamePassword
      This API call was authenticated by your username/password.
    • AccountIdLicenseKey

      public static final AuthenticationTypeId AccountIdLicenseKey
      This API call was authenticated by your Avalara Account ID and private license key.
    • OpenIdBearerToken

      public static final AuthenticationTypeId OpenIdBearerToken
      This API call was authenticated by OpenID Bearer Token.
  • Method Details

    • values

      public static AuthenticationTypeId[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static AuthenticationTypeId valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • valueOf

      public static AuthenticationTypeId valueOf(int intValue)
      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:
      intValue - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getValue

      public int getValue()