public enum AuthenticationDirection extends Enum<AuthenticationDirection>
| Enum Constant and Description |
|---|
INBOUND
Represents invocations made into this application, affecting
inbound authentication configuration on this host.
|
OUTBOUND
Represents invocations made by this application into another,
remote application, affecting outbound authentication configuration on
this host.
|
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationDirection INBOUND
public static final AuthenticationDirection OUTBOUND
public static AuthenticationDirection[] values()
for (AuthenticationDirection c : AuthenticationDirection.values()) System.out.println(c);
public static AuthenticationDirection 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 © 2018 Atlassian. All rights reserved.