Name

Class javax.security.auth.login.AppConfiguration-Entry

Synopsis

This class represents a single login module for a particular application. The control flags indicate whether the module is required, optional, etc. This class is only used by developers who write their own Configuration class.

Class Definition

public class javax.security.auth.login.AppConfigurationEntry
    extends java.lang.Object {

    public static class LoginModuleControlFlag
        extends java.lang.Object {

        // Constants
        public static final LoginModuleControlFlag OPTIONAL;
        public static final LoginModuleControlFlag REQUIRED;
        public static final LoginModuleControlFlag REQUISITE;
        public static final LoginModuleControlFlag SUFFICIENT;

        // Instance Methods
        public String toString(  );
    }

    // Constructors
    public AppConfigurationEntry(String, LoginModuleControlFlag, Map);

    // Instance Methods
    public LoginModuleControlFlag getControlFlag(  );
    public String getLoginModuleName(  );
    public Map getOptions(  );
}

See also

Configuration

Get Java Security, 2nd 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.