javax.security.auth.login
Class AppConfigurationEntry.LoginModuleControlFlag
- java.lang.Object
-
- javax.security.auth.login.AppConfigurationEntry.LoginModuleControlFlag
-
- Enclosing class:
- AppConfigurationEntry
public static class AppConfigurationEntry.LoginModuleControlFlag extends java.lang.ObjectThis class represents whether or not aLoginModuleis REQUIRED, REQUISITE, SUFFICIENT or OPTIONAL.
-
-
Field Summary
Fields Modifier and Type Field and Description static AppConfigurationEntry.LoginModuleControlFlagOPTIONALOptionalLoginModule.static AppConfigurationEntry.LoginModuleControlFlagREQUIREDRequiredLoginModule.static AppConfigurationEntry.LoginModuleControlFlagREQUISITERequisiteLoginModule.static AppConfigurationEntry.LoginModuleControlFlagSUFFICIENTSufficientLoginModule.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.lang.StringtoString()Return a String representation of this controlFlag.
-
-
-
Field Detail
-
REQUIRED
public static final AppConfigurationEntry.LoginModuleControlFlag REQUIRED
RequiredLoginModule.
-
REQUISITE
public static final AppConfigurationEntry.LoginModuleControlFlag REQUISITE
RequisiteLoginModule.
-
SUFFICIENT
public static final AppConfigurationEntry.LoginModuleControlFlag SUFFICIENT
SufficientLoginModule.
-
OPTIONAL
public static final AppConfigurationEntry.LoginModuleControlFlag OPTIONAL
OptionalLoginModule.
-
-
Method Detail
-
toString
public java.lang.String toString()
Return a String representation of this controlFlag.The String has the format, "LoginModuleControlFlag: flag", where flag is either required, requisite, sufficient, or optional.
- Overrides:
toStringin classjava.lang.Object- Returns:
- a String representation of this controlFlag.
-
-