public static enum NtlmPasswordAuthenticator.AuthenticationType extends Enum<NtlmPasswordAuthenticator.AuthenticationType>
| Enum Constant and Description |
|---|
GUEST
Guest authentication
Allows login with invalid credentials (username and/or password)
Fallback to anonymous authentication is permitted
|
NULL
Null/anonymous authentication
Login with no credentials
|
USER
Regular user authentication
|
| Modifier and Type | Method and Description |
|---|---|
static NtlmPasswordAuthenticator.AuthenticationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NtlmPasswordAuthenticator.AuthenticationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NtlmPasswordAuthenticator.AuthenticationType NULL
public static final NtlmPasswordAuthenticator.AuthenticationType GUEST
public static final NtlmPasswordAuthenticator.AuthenticationType USER
public static NtlmPasswordAuthenticator.AuthenticationType[] values()
for (NtlmPasswordAuthenticator.AuthenticationType c : NtlmPasswordAuthenticator.AuthenticationType.values()) System.out.println(c);
public static NtlmPasswordAuthenticator.AuthenticationType 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. All rights reserved.