@MinMuleVersion(value="4.2.1") public enum CredentialsPlacement extends Enum<CredentialsPlacement>
| Enum Constant and Description |
|---|
BASIC_AUTH_HEADER
Send credentials in a Basic Authentication header
|
BODY
Send credentials encoded in HTTP Body
|
QUERY_PARAMS
Send credentials as query parameters
|
| Modifier and Type | Method and Description |
|---|---|
static CredentialsPlacement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CredentialsPlacement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CredentialsPlacement BASIC_AUTH_HEADER
public static final CredentialsPlacement BODY
public static final CredentialsPlacement QUERY_PARAMS
public static CredentialsPlacement[] values()
for (CredentialsPlacement c : CredentialsPlacement.values()) System.out.println(c);
public static CredentialsPlacement 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 © 2025 MuleSoft, Inc.. All rights reserved.