public static enum SystemAuthenticationControl.AnonymousConnectionAction extends Enum<SystemAuthenticationControl.AnonymousConnectionAction>
Enum Constant and Description |
---|
ABSTAIN
Defer authentication decision for anonymous connection attempts to
subsequent authentication handlers.
|
ALLOW
Accept anonymous connection attempts.
|
DENY
Deny anonymous connection attempts.
|
Modifier and Type | Method and Description |
---|---|
static SystemAuthenticationControl.AnonymousConnectionAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SystemAuthenticationControl.AnonymousConnectionAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemAuthenticationControl.AnonymousConnectionAction ALLOW
public static final SystemAuthenticationControl.AnonymousConnectionAction DENY
public static final SystemAuthenticationControl.AnonymousConnectionAction ABSTAIN
public static SystemAuthenticationControl.AnonymousConnectionAction[] values()
for (SystemAuthenticationControl.AnonymousConnectionAction c : SystemAuthenticationControl.AnonymousConnectionAction.values()) System.out.println(c);
public static SystemAuthenticationControl.AnonymousConnectionAction 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 © 2024 DiffusionData Ltd. All Rights Reserved.