public class AppConfigurationEntry extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static class |
AppConfigurationEntry.LoginModuleControlFlag |
| Constructor and Description |
|---|
AppConfigurationEntry(java.lang.String loginModuleName,
AppConfigurationEntry.LoginModuleControlFlag controlFlag,
java.util.Map<java.lang.String,?> options) |
| Modifier and Type | Method and Description |
|---|---|
AppConfigurationEntry.LoginModuleControlFlag |
getControlFlag() |
java.lang.String |
getLoginModuleName() |
java.util.Map<java.lang.String,?> |
getOptions() |
java.lang.String |
toString()
Convert this Object to a human-readable String.
|
public AppConfigurationEntry(java.lang.String loginModuleName, AppConfigurationEntry.LoginModuleControlFlag controlFlag, java.util.Map<java.lang.String,?> options)
public AppConfigurationEntry.LoginModuleControlFlag getControlFlag()
public java.lang.String getLoginModuleName()
public java.util.Map<java.lang.String,?> getOptions()
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)