public static enum AwsV4FamilyHttpSigner.AuthLocation extends Enum<AwsV4FamilyHttpSigner.AuthLocation>
| Enum Constant and Description |
|---|
HEADER
Indicates auth-related data is inserted in HTTP headers.
|
QUERY_STRING
Indicates auth-related data is inserted in HTTP query-parameters.
|
| Modifier and Type | Method and Description |
|---|---|
static AwsV4FamilyHttpSigner.AuthLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AwsV4FamilyHttpSigner.AuthLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AwsV4FamilyHttpSigner.AuthLocation HEADER
public static final AwsV4FamilyHttpSigner.AuthLocation QUERY_STRING
public static AwsV4FamilyHttpSigner.AuthLocation[] values()
for (AwsV4FamilyHttpSigner.AuthLocation c : AwsV4FamilyHttpSigner.AuthLocation.values()) System.out.println(c);
public static AwsV4FamilyHttpSigner.AuthLocation valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.