- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 101 for authentication (0.97 sec)
-
src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java
import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; /** * Service class for managing web authentication configurations. * Provides CRUD operations for web authentication settings including * listing, retrieving, storing, and deleting authentication configurations. */ public class WebAuthenticationService { /** * Default constructor. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
public Integer purgeSuggestSearchLogDay; /** * LDAP server URL for authentication. * Used when LDAP authentication is enabled. */ @Size(max = 1000) public String ldapProviderUrl; /** * LDAP security principal for binding to the LDAP server. * Used for authenticating with the LDAP server. */ @Size(max = 1000) public String ldapSecurityPrincipal;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/SpnegoCredential.java
import org.lastaflute.web.login.credential.LoginCredential; /** * SPNEGO authentication credential implementation. * * This class represents login credentials obtained through SPNEGO (Security Provider * Negotiation Protocol) authentication. It contains the username extracted from the * SPNEGO authentication process, typically from a Kerberos ticket. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
* * @return The login credential containing the authenticated username, * an ActionResponseCredential for authentication challenges, * or null if no authentication information is available * @throws SsoLoginException if SPNEGO authentication fails */ @Override public LoginCredential getLoginCredential() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 17.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/AuthenticationChain.java
/** * Interface for authentication chain operations. * Provides methods for user management and authentication operations. */ public interface AuthenticationChain { /** * Updates an existing user in the authentication chain. * @param user The user to update. */ void update(User user); /** * Deletes a user from the authentication chain. * @param user The user to delete.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java
try { final AzureAdAuthenticator authenticator = ComponentUtil.getComponent(AzureAdAuthenticator.class); final IAuthenticationResult newResult = authenticator.refreshTokenSilently(this); if (newResult != null) { authResult = newResult; authenticator.updateMemberOf(this);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webauth/EditBody.java
import org.codelibs.fess.app.web.admin.webauth.EditForm; /** * Request body class for web authentication edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for web authentication management operations. */ public class EditBody extends EditForm { /** * Default constructor. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/SsoManager.java
} /** * Registers an SSO authenticator with this manager. * * @param authenticator The SSO authenticator to register */ public void register(final SsoAuthenticator authenticator) { if (logger.isInfoEnabled()) { logger.info("Load {}", authenticator.getClass().getSimpleName()); } authenticatorList.add(authenticator); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java
import org.lastaflute.web.response.JsonResponse; import jakarta.annotation.Resource; /** * API action for admin file authentication management. * Provides RESTful API endpoints for managing file authentication settings in the Fess search engine. * File authentication settings define access credentials and permissions for file-based crawling. * */ public class ApiAdminFileauthAction extends FessApiAdminAction {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
/** * Main SSO authentication endpoint. * * This method handles the primary SSO authentication flow. It checks if a user * is already logged in, attempts SSO authentication, and handles various * authentication scenarios including success, failure, and challenge responses. * * @return ActionResponse directing to the appropriate page based on authentication result */ @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0)