javax.security.auth.login

Class AppConfigurationEntry.LoginModuleControlFlag

  1. java.lang.Object
  2. extended byjavax.security.auth.login.AppConfigurationEntry.LoginModuleControlFlag
Enclosing class:
AppConfigurationEntry

  1. public static class AppConfigurationEntry.LoginModuleControlFlag
  2. extends java.lang.Object
This class represents whether or not a LoginModule is REQUIRED, REQUISITE, SUFFICIENT or OPTIONAL.

Field Summary

Modifier and Type Field and Description
  1. static
  2. AppConfigurationEntry.LoginModuleControlFlag
OPTIONAL
Optional LoginModule.
  1. static
  2. AppConfigurationEntry.LoginModuleControlFlag
REQUIRED
Required LoginModule.
  1. static
  2. AppConfigurationEntry.LoginModuleControlFlag
REQUISITE
Requisite LoginModule.
  1. static
  2. AppConfigurationEntry.LoginModuleControlFlag
SUFFICIENT
Sufficient LoginModule.

Method Summary

Modifier and Type Method and Description
  1. java.lang.String
toString()
Return a String representation of this controlFlag.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Field Detail

REQUIRED

  1. public static final AppConfigurationEntry.LoginModuleControlFlag REQUIRED
Required LoginModule.

REQUISITE

  1. public static final AppConfigurationEntry.LoginModuleControlFlag REQUISITE
Requisite LoginModule.

SUFFICIENT

  1. public static final AppConfigurationEntry.LoginModuleControlFlag SUFFICIENT
Sufficient LoginModule.

OPTIONAL

  1. public static final AppConfigurationEntry.LoginModuleControlFlag OPTIONAL
Optional LoginModule.

Method Detail

toString

  1. 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 class java.lang.Object
Returns:
a String representation of this controlFlag.