public static enum HttpCredentialTransport.Type extends Enum<HttpCredentialTransport.Type>
| Enum Constant and Description |
|---|
AUTHORIZATION
Auth header, type target is the auth type (basic, bearer etc)
|
COOKIE
A cookie.
|
OTHER_HEADER
A different header, type target is the header name
|
POST
A post request, target is the POST URI
|
X509
X509
|
| Modifier and Type | Method and Description |
|---|---|
static HttpCredentialTransport.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpCredentialTransport.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpCredentialTransport.Type COOKIE
public static final HttpCredentialTransport.Type AUTHORIZATION
public static final HttpCredentialTransport.Type OTHER_HEADER
public static final HttpCredentialTransport.Type POST
public static final HttpCredentialTransport.Type X509
public static HttpCredentialTransport.Type[] values()
for (HttpCredentialTransport.Type c : HttpCredentialTransport.Type.values()) System.out.println(c);
public static HttpCredentialTransport.Type 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 © 2021 JBoss by Red Hat. All rights reserved.