Package com.im.df.impl.db.sprovider
Enum AuthenticationPolicy
- java.lang.Object
- 
- java.lang.Enum<AuthenticationPolicy>
- 
- com.im.df.impl.db.sprovider.AuthenticationPolicy
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<AuthenticationPolicy>
 
 public enum AuthenticationPolicy extends Enum<AuthenticationPolicy> - Author:
- Masoud Kalali
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ANONYMOUSDB_USERNAME_PASSWORDIJC_IAM_DBIJC_USERNAME_PASSWORDOID_AUTH
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static AuthenticationPolicyvalueOf(String name)Returns the enum constant of this type with the specified name.static AuthenticationPolicy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
ANONYMOUSpublic static final AuthenticationPolicy ANONYMOUS 
 - 
IJC_USERNAME_PASSWORDpublic static final AuthenticationPolicy IJC_USERNAME_PASSWORD 
 - 
DB_USERNAME_PASSWORDpublic static final AuthenticationPolicy DB_USERNAME_PASSWORD 
 - 
IJC_IAM_DBpublic static final AuthenticationPolicy IJC_IAM_DB 
 - 
OID_AUTHpublic static final AuthenticationPolicy OID_AUTH 
 
- 
 - 
Method Detail- 
valuespublic static AuthenticationPolicy[] 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 (AuthenticationPolicy c : AuthenticationPolicy.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AuthenticationPolicy 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
 
 
- 
 
-