public static class AppConfigurationEntry.LoginModuleControlFlag extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
static AppConfigurationEntry.LoginModuleControlFlag |
OPTIONAL |
static AppConfigurationEntry.LoginModuleControlFlag |
REQUIRED |
static AppConfigurationEntry.LoginModuleControlFlag |
REQUISITE |
static AppConfigurationEntry.LoginModuleControlFlag |
SUFFICIENT |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()
Convert this Object to a human-readable String.
|
public static final AppConfigurationEntry.LoginModuleControlFlag OPTIONAL
public static final AppConfigurationEntry.LoginModuleControlFlag REQUIRED
public static final AppConfigurationEntry.LoginModuleControlFlag REQUISITE
public static final AppConfigurationEntry.LoginModuleControlFlag SUFFICIENT
public java.lang.String toString()
java.lang.ObjectSystem.out.println()
and such.
It is typical, but not required, to ensure that this method
never completes abruptly with a RuntimeException.
This method will be called when performing string
concatenation with this object. If the result is
null, string concatenation will instead
use "null".
The default implementation returns
getClass().getName() + "@" +
Integer.toHexString(hashCode()).
toString in class java.lang.ObjectObject.getClass(),
Object.hashCode(),
Class.getName(),
Integer.toHexString(int)