public static enum AuthProperties.Property extends Enum<AuthProperties.Property>
| Enum Constant and Description | 
|---|
JAAS_ENTRY
The name used as the index into the configuration for the  
LoginContext. | 
PASSWORD
The password. 
 | 
PROTOCOL
The protocol for which the authentication is being performed (e.g., "ldap"). 
 | 
USERNAME
The username. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static AuthProperties.Property | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static AuthProperties.Property[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final AuthProperties.Property USERNAME
public static final AuthProperties.Property PASSWORD
public static final AuthProperties.Property PROTOCOL
public static final AuthProperties.Property JAAS_ENTRY
LoginContext.public static AuthProperties.Property[] values()
for (AuthProperties.Property c : AuthProperties.Property.values()) System.out.println(c);
public static AuthProperties.Property 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 © 2013–2021 Apache Software Foundation. All rights reserved.