- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for using (0.06 sec)
-
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 parametersRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 36.3K bytes - Viewed (0) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
pom.xml
<resources> <resource> <directory>src/main/resources</directory> </resource> </resources> <!-- This file contains all the common properties used to build the different packages (tar.gz, deb, rpm) using Maven resources plugin --> <filters> <filter>src/packaging/common/packaging.properties</filter> </filters> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 49.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
/** The key of the message: Easy Setup */ public static final String LABELS_wizard_start_title = "{labels.wizard_start_title}"; /** The key of the message: You can create a crawl setting easily by using Configuration Wizard. */ public static final String LABELS_wizard_start_desc = "{labels.wizard_start_desc}"; /** The key of the message: Start Setup */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 156.4K bytes - Viewed (0)