Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 134 for Authentication (0.34 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/EditBody.java

    import org.codelibs.fess.app.web.admin.fileauth.EditForm;
    
    /**
     * Request body class for file authentication edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for file 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)
  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/CreateForm.java

        public String protocolScheme;
    
        /** The username for file authentication (required, maximum 100 characters). */
        @Required
        @Size(max = 100)
        public String username;
    
        /** The password for file authentication (maximum 100 characters). */
        @Size(max = 100)
        public String password;
    
        /** Additional parameters for file authentication (maximum 1000 characters). */
        @Size(max = 1000)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  4. 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)
  5. src/test/java/org/codelibs/fess/opensearch/config/exentity/WebConfigTest.java

    import org.codelibs.fess.app.service.RequestHeaderService;
    import org.codelibs.fess.app.service.WebAuthenticationService;
    import org.codelibs.fess.crawler.client.CrawlerClientFactory;
    import org.codelibs.fess.crawler.client.http.Authentication;
    import org.codelibs.fess.crawler.client.http.HcHttpClient;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.mylasta.direction.FessProp;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java

    import jakarta.annotation.Resource;
    
    /**
     * Admin action for File Authentication management.
     *
     */
    public class AdminFileauthAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminFileauthAction() {
            super();
        }
    
        /** The role name for file authentication administration. */
        public static final String ROLE = "admin-fileauth";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/sso/SsoManager.java

    import org.lastaflute.web.response.ActionResponse;
    
    /**
     * Manager class for coordinating SSO (Single Sign-On) authentication operations.
     *
     * This class serves as the central coordinator for SSO authentication in Fess.
     * It manages registered SSO authenticators, determines when SSO is available,
     * and delegates authentication operations to the appropriate SSO provider based
     * on the current configuration.
     */
    public class SsoManager {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/UserService.java

    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing user operations in the Fess search system.
     * This service provides CRUD operations for user management, including user authentication,
     * password management, and user listing with pagination support.
     *
     */
    public class UserService {
    
        /**
         * Default constructor for UserService.
         */
        public UserService() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/org/codelibs/fess/app/web/help/HelpAction.java

        /**
         * Handles the help page request and renders the help interface.
         * This method performs authentication checks and sets up the necessary
         * form parameters and rendering data for the help page display.
         *
         * @return HtmlResponse containing the rendered help page or redirect to login if authentication is required
         */
        @Execute
        public HtmlResponse index() {
            if (isLoginRequired()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.2K bytes
    - Viewed (0)
Back to top