public enum AuthenticationTypeId extends java.lang.Enum<AuthenticationTypeId>
| Enum Constant and Description |
|---|
AccountIdLicenseKey
This API call was authenticated by your Avalara Account ID and private license key.
|
None
This API call was not authenticated.
|
OpenIdBearerToken
This API call was authenticated by OpenID Bearer Token.
|
UsernamePassword
This API call was authenticated by your username/password.
|
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationTypeId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationTypeId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationTypeId None
public static final AuthenticationTypeId UsernamePassword
public static final AuthenticationTypeId AccountIdLicenseKey
public static final AuthenticationTypeId OpenIdBearerToken
public static AuthenticationTypeId[] values()
for (AuthenticationTypeId c : AuthenticationTypeId.values()) System.out.println(c);
public static AuthenticationTypeId valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null