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.Object
This class represents whether or not aLoginModule
is REQUIRED, REQUISITE, SUFFICIENT or OPTIONAL.
-
-
Field Summary
Fields Modifier and Type Field and Description static AppConfigurationEntry.LoginModuleControlFlag
OPTIONAL
OptionalLoginModule
.static AppConfigurationEntry.LoginModuleControlFlag
REQUIRED
RequiredLoginModule
.static AppConfigurationEntry.LoginModuleControlFlag
REQUISITE
RequisiteLoginModule
.static AppConfigurationEntry.LoginModuleControlFlag
SUFFICIENT
SufficientLoginModule
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.lang.String
toString()
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:
toString
in classjava.lang.Object
- Returns:
- a String representation of this controlFlag.
-
-