- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 27 for Authentication (1.08 sec)
-
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/api/admin/webauth/ApiAdminWebauthAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java
/** User's computed permissions. */ protected String[] permissions; /** Azure AD authentication result. */ protected IAuthenticationResult authResult; /** * Constructs an Azure AD user with the authentication result. * @param authResult The authentication result from Azure AD. */ public AzureAdUser(final IAuthenticationResult authResult) {
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/sso/aad/AzureAdAuthenticator.java
} catch (final Exception e) { throw new SsoLoginException("Failed to parse an authentication response.", e); } } /** * Validates the nonce in the authentication result. * @param stateData The stored state data containing the expected nonce. * @param authData The authentication result containing the actual nonce. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 37.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java
/** * Abstract base class for Fess API actions that provides common functionality * for API endpoints including authentication, message handling, and access control. * * This class extends FessBaseAction and provides specialized behavior for API requests, * including token-based authentication and JSON response handling. */ public abstract class FessApiAction extends FessBaseAction { /** * Default constructor.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
Exception middleCause = new Exception("SSO provider unreachable", rootCause); SsoProcessException topException = new SsoProcessException("SSO authentication failed", middleCause); assertEquals("SSO authentication failed", topException.getMessage()); assertEquals(middleCause, topException.getCause()); assertEquals(rootCause, topException.getCause().getCause()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 16.4K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
/** * Abstract base class for search-related actions in the Fess search application. * Provides common functionality for search operations, including search form handling, * label management, user authentication, and search result processing. * * This class extends FessBaseAction and serves as the foundation for all search-related * web actions in the application. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0) -
guava/src/com/google/common/hash/Hashing.java
static final HashFunction SHA_512 = new MessageDigestHashFunction("SHA-512", "Hashing.sha512()"); } /** * Returns a hash function implementing the Message Authentication Code (MAC) algorithm, using the * MD5 (128 hash bits) hash function and the given secret key. * * <p>If you are designing a new system that needs HMAC, prefer {@link #hmacSha256} or other
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:06:57 UTC 2025 - 31.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java
import org.apache.logging.log4j.Logger; import org.codelibs.core.lang.StringUtil; import org.codelibs.fess.Constants; import org.codelibs.fess.app.service.WebConfigService; import org.codelibs.fess.crawler.client.http.Authentication; import org.codelibs.fess.crawler.client.http.form.FormScheme; import org.codelibs.fess.crawler.client.http.impl.AuthenticationImpl; import org.codelibs.fess.crawler.client.http.ntlm.JcifsEngine;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.9K bytes - Viewed (0)