Name

AppConfigurationEntry

Synopsis

An instance of this class represents a login module to be used for user authentication for a particular application. It encapsulates three pieces of information: the class name of the javax.security.auth.spi.LoginModule implementation that is to be used, a “control flag” that specifies whether authentication by that module is required or optional, and a java.util.Map of arbitrary string name/value pairs of options for the login module.

public class AppConfigurationEntry {
// Public Constructors
     public AppConfigurationEntry(String loginModuleName, AppConfigurationEntry.
        LoginModuleControlFlag controlFlag, java.util.Map<String,?> options);  
// Nested Types
     public static class LoginModuleControlFlag; 
// Public Instance Methods
     public AppConfigurationEntry.LoginModuleControlFlag getControlFlag( );  
     public String getLoginModuleName( );  
     public java.util.Map<String,?> getOptions( );  
}

Returned By

Configuration.getAppConfigurationEntry( )

Get Java in a Nutshell, 5th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.