public static class

AppConfigurationEntry.LoginModuleControlFlag

extends Object
java.lang.Object
   ↳ javax.security.auth.login.AppConfigurationEntry.LoginModuleControlFlag

Class Overview

This class represents whether or not a LoginModule is REQUIRED, REQUISITE, SUFFICIENT or OPTIONAL.

Summary

Fields
public static final AppConfigurationEntry.LoginModuleControlFlag OPTIONAL Optional LoginModule.
public static final AppConfigurationEntry.LoginModuleControlFlag REQUIRED Required LoginModule.
public static final AppConfigurationEntry.LoginModuleControlFlag REQUISITE Requisite LoginModule.
public static final AppConfigurationEntry.LoginModuleControlFlag SUFFICIENT Sufficient LoginModule.
Public Methods
String toString()
Return a String representation of this controlFlag.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public static final AppConfigurationEntry.LoginModuleControlFlag OPTIONAL

Optional LoginModule.

public static final AppConfigurationEntry.LoginModuleControlFlag REQUIRED

Required LoginModule.

public static final AppConfigurationEntry.LoginModuleControlFlag REQUISITE

Requisite LoginModule.

public static final AppConfigurationEntry.LoginModuleControlFlag SUFFICIENT

Sufficient LoginModule.

Public Methods

public 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.

Returns
  • a String representation of this controlFlag.