- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getAuthenticators (0.33 sec)
-
src/main/java/org/codelibs/fess/sso/SsoManager.java
} /** * Gets all registered SSO authenticators. * * @return Array of all registered SSO authenticators */ public SsoAuthenticator[] getAuthenticators() { return authenticatorList.toArray(new SsoAuthenticator[authenticatorList.size()]); } /** * Registers an SSO authenticator with this manager. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
}); final LoginCredentialResolver loginResolver = new LoginCredentialResolver(resolver); for (final SsoAuthenticator auth : ComponentUtil.getSsoManager().getAuthenticators()) { auth.resolveCredential(loginResolver); } } /** * A resolver for login credentials that wraps the standard credential resolverRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
* * @param smbAuthentication the SMB authentication information * @return the NTLM password authenticator */ protected NtlmPasswordAuthenticator getAuthenticator(final SmbAuthentication smbAuthentication) { return new NtlmPasswordAuthenticator(smbAuthentication.getDomain() == null ? "" : smbAuthentication.getDomain(),Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 23.4K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
* * @return The configured SPNEGO authenticator instance * @throws SsoLoginException if SPNEGO initialization fails */ protected synchronized org.codelibs.spnego.SpnegoAuthenticator getAuthenticator() { final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (authenticator != null && fessConfig.getSystemPropertyAsBoolean(SPNEGO_INITIALIZED, false)) { return authenticator;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.8K bytes - Viewed (3)