Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for using (0.57 sec)

  1. src/main/java/org/codelibs/fess/helper/SearchHelper.java

            }
    
        }
    
        /**
         * Internal search method that executes the actual search query.
         *
         * This method performs the search using the rank fusion processor and may retry
         * with OR operator if the hit count is below the configured minimum threshold.
         *
         * @param query The search query string
         * @param params The search request parameters
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 36.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/storage/StorageClientFactory.java

            case S3_COMPAT:
            default:
                return new S3StorageClient(endpoint, accessKey, secretKey, bucket, fessConfig.getStorageRegion());
            }
        }
    
        /**
         * Creates a StorageClient using the default FessConfig.
         *
         * @return configured StorageClient
         */
        public static StorageClient createClient() {
            return createClient(ComponentUtil.getFessConfig());
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

                        + "&resource=https%3a%2f%2fgraph.microsoft.com" + "&state=" + state + "&nonce=" + nonce;
            }
            if (logger.isDebugEnabled()) {
                logger.debug("redirect to: {} (using {} endpoint)", authUrl, useV2Endpoint ? "v2.0" : "v1.0");
            }
            return authUrl;
    
        }
    
        /**
         * Stores state and nonce information in the HTTP session.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 56.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

                // For fake-gcs-server or custom endpoint
                builder.setHost(endpoint);
                builder.setCredentials(NoCredentials.getInstance());
                if (logger.isDebugEnabled()) {
                    logger.debug("Using custom GCS endpoint: {}", endpoint);
                }
            } else {
                // Production: use credentials file or default credentials
                if (StringUtil.isNotBlank(credentialsPath)) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

                setup.setup(form -> {
                    updateForm(fessConfig, form);
                });
            });
        }
    
        /**
         * Sends a test mail using the provided notification settings.
         *
         * @param form the mail form containing notification settings
         * @return HTML response after sending test mail
         */
        @Execute
        @Secured({ ROLE })
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/storage/S3StorageClient.java

    import software.amazon.awssdk.services.s3.model.S3Object;
    import software.amazon.awssdk.services.s3.model.Tag;
    import software.amazon.awssdk.services.s3.model.Tagging;
    
    /**
     * S3-compatible storage client implementation using AWS SDK v2.
     * Supports Amazon S3, MinIO, and other S3-compatible storage systems.
     */
    public class S3StorageClient implements StorageClient {
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                // to ensure it was issued by the expected OpenID Connect provider and has not been tampered with.
                // TODO: Implement JWT signature validation using the provider's public key
    
                final Map<String, Object> attributes = new HashMap<>();
                attributes.put("accesstoken", tr.getAccessToken());
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

    import jakarta.servlet.http.HttpServletResponse;
    import jakarta.servlet.http.HttpSession;
    
    /**
     * Authenticator for SAML 2.0.
     *
     * <p>This authenticator enables Single Sign-On (SSO) using SAML 2.0 protocol
     * with Identity Providers such as Okta, Azure AD, OneLogin, etc.</p>
     *
     * <h2>Required Configuration</h2>
     * <p>Add the following properties to {@code system.properties}:</p>
     * <pre>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 20.2K bytes
    - Viewed (3)
  9. src/main/resources/fess_label.properties

    labels.data_crawling_button_create_job=Create New Job
    labels.wizard_title_configuration=Configuration Wizard
    labels.wizard_start_title=Easy Setup
    labels.wizard_start_desc=You can create a crawl setting easily by using Configuration Wizard.
    labels.wizard_start_button=Start Setup
    labels.wizard_button_cancel=Cancel
    labels.wizard_crawling_config_title=Crawl Config
    labels.wizard_crawling_setting_title=Crawl Setting
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 44K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_en.properties

    labels.data_crawling_button_create_job=Create New Job
    labels.wizard_title_configuration=Configuration Wizard
    labels.wizard_start_title=Easy Setup
    labels.wizard_start_desc=You can create a crawl setting easily by using Configuration Wizard.
    labels.wizard_start_button=Start Setup
    labels.wizard_button_cancel=Cancel
    labels.wizard_crawling_config_title=Crawl Config
    labels.wizard_crawling_setting_title=Crawl Setting
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 44K bytes
    - Viewed (0)
Back to top