declare namespace javax { namespace security { namespace auth { namespace login { namespace AppConfigurationEntry { /** * This class represents whether or not a {@code LoginModule} * is REQUIRED, REQUISITE, SUFFICIENT or OPTIONAL. */ // @ts-ignore class LoginModuleControlFlag extends java.lang.Object { /** * Required {@code LoginModule}. */ // @ts-ignore public static readonly REQUIRED: javax.security.auth.login.AppConfigurationEntry.LoginModuleControlFlag /** * Requisite {@code LoginModule}. */ // @ts-ignore public static readonly REQUISITE: javax.security.auth.login.AppConfigurationEntry.LoginModuleControlFlag /** * Sufficient {@code LoginModule}. */ // @ts-ignore public static readonly SUFFICIENT: javax.security.auth.login.AppConfigurationEntry.LoginModuleControlFlag /** * Optional {@code LoginModule}. */ // @ts-ignore public static readonly OPTIONAL: javax.security.auth.login.AppConfigurationEntry.LoginModuleControlFlag /** * Return a String representation of this controlFlag. *

The String has the format, "LoginModuleControlFlag: flag", * where flag is either required, requisite, * sufficient, or optional. * @return a String representation of this controlFlag. */ // @ts-ignore public toString(): string } } } } } }