Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 123 for authentication (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

     *
     * ### Server Authentication
     *
     * This is the most common form of TLS authentication: clients verify that servers are trusted and
     * that they own the hostnames that they represent. Server authentication is required.
     *
     * To perform server authentication:
     *
     *  * The server's handshake certificates must have a [held certificate][HeldCertificate] (a
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat May 10 11:15:14 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top