- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for SsoAuthenticator (0.05 sec)
-
src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java
* for obtaining login credentials, resolving user information, and managing SSO * lifecycle operations like logout and metadata exchange. */ public interface SsoAuthenticator { /** * Gets the login credential for SSO authentication. * @return The login credential. */ LoginCredential getLoginCredential(); /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/SsoManager.java
*/ public SsoAuthenticator[] getAuthenticators() { return authenticatorList.toArray(new SsoAuthenticator[authenticatorList.size()]); } /** * Registers an SSO authenticator with this manager. * * @param authenticator The SSO authenticator to register */ public void register(final SsoAuthenticator authenticator) { if (logger.isInfoEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0)