java.io.Serializable, java.lang.Comparable<UserGroupInformation.AuthenticationMethod>@Public @Evolving public static enum UserGroupInformation.AuthenticationMethod extends java.lang.Enum<UserGroupInformation.AuthenticationMethod>
| Enum Constant | Description |
|---|---|
CERTIFICATE |
|
CUSTOM |
|
KERBEROS |
|
KERBEROS_SSL |
|
PROXY |
|
SIMPLE |
|
TOKEN |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
allowsDelegation() |
|
static UserGroupInformation.AuthenticationMethod |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static UserGroupInformation.AuthenticationMethod[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserGroupInformation.AuthenticationMethod SIMPLE
public static final UserGroupInformation.AuthenticationMethod KERBEROS
public static final UserGroupInformation.AuthenticationMethod TOKEN
public static final UserGroupInformation.AuthenticationMethod CERTIFICATE
public static final UserGroupInformation.AuthenticationMethod KERBEROS_SSL
public static final UserGroupInformation.AuthenticationMethod PROXY
public static final UserGroupInformation.AuthenticationMethod CUSTOM
public static UserGroupInformation.AuthenticationMethod[] values()
for (UserGroupInformation.AuthenticationMethod c : UserGroupInformation.AuthenticationMethod.values()) System.out.println(c);
public static UserGroupInformation.AuthenticationMethod valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic boolean allowsDelegation()
Copyright © 2008–2025 Apache Software Foundation. All rights reserved.