Enum AuthProperties.Property
- java.lang.Object
- 
- java.lang.Enum<AuthProperties.Property>
- 
- org.apache.tinkerpop.gremlin.driver.AuthProperties.Property
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<AuthProperties.Property>
 - Enclosing class:
- AuthProperties
 
 public static enum AuthProperties.Property extends Enum<AuthProperties.Property> An enum of the available authorization properties.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description JAAS_ENTRYThe name used as the index into the configuration for theLoginContext.PASSWORDThe password.PROTOCOLThe protocol for which the authentication is being performed (e.g., "ldap").USERNAMEThe username.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static AuthProperties.PropertyvalueOf(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.
 
- 
- 
- 
Enum Constant Detail- 
USERNAMEpublic static final AuthProperties.Property USERNAME The username.
 - 
PASSWORDpublic static final AuthProperties.Property PASSWORD The password.
 - 
PROTOCOLpublic static final AuthProperties.Property PROTOCOL The protocol for which the authentication is being performed (e.g., "ldap").
 - 
JAAS_ENTRYpublic static final AuthProperties.Property JAAS_ENTRY The name used as the index into the configuration for theLoginContext.
 
- 
 - 
Method Detail- 
valuespublic static AuthProperties.Property[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AuthProperties.Property c : AuthProperties.Property.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AuthProperties.Property valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
- 
 
-