Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 167 for authentication (0.35 sec)

  1. 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)
  2. 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)
  3. src/main/java/org/codelibs/fess/app/web/admin/fileauth/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing file authentication configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing file authentication entries,
     * including tracking information for optimistic locking and audit trails.
     * File authentication configurations define access control for file system crawling operations.
     *
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

                registerWebConfigItems(data);
            });
        }
    
        /**
         * Displays the form for editing an existing web authentication configuration.
         *
         * @param form the edit form containing web authentication ID
         * @return HTML response for the web authentication edit form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/org/codelibs/fess/auth/AuthenticationManager.java

    import org.codelibs.fess.opensearch.user.exentity.User;
    
    /**
     * Manages authentication operations across multiple authentication chains.
     * This class coordinates user operations across different authentication providers.
     */
    public class AuthenticationManager {
        /** Array of authentication chains to process user operations. */
        protected AuthenticationChain[] chains = {};
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/webauth/CreateForm.java

         */
        @Required
        @Size(max = 100)
        public String username;
    
        /**
         * The password for authentication.
         */
        @Size(max = 100)
        public String password;
    
        /**
         * Additional parameters for the authentication.
         */
        @Size(max = 1000)
        public String parameters;
    
        /**
         * The web configuration ID this authentication is associated with.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java

                            .status(ApiResult.Status.OK)
                            .result());
        }
    
        /**
         * Retrieves a specific web authentication setting by ID.
         *
         * @param id the ID of the web authentication setting to retrieve
         * @return JSON response containing the web authentication setting
         */
        // GET /api/admin/webauth/setting/{id}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  9. android/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: Thu Jul 17 15:26:41 UTC 2025
    - 29.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing file authentication configurations.
     * This service provides operations for retrieving, storing, and deleting
     * file authentication settings used by the Fess search engine.
     */
    public class FileAuthenticationService {
    
        /**
         * Default constructor for file authentication service.
         * Creates a new instance with default values.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
Back to top