- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for StorageClient (0.11 seconds)
-
src/main/java/org/codelibs/fess/storage/StorageClient.java
import java.util.List; import java.util.Map; /** * Interface for cloud storage operations. * Implementations provide access to S3-compatible storage, GCS, or other cloud storage systems. */ public interface StorageClient extends AutoCloseable { /** * Uploads an object to storage. * * @param objectName the name/path for the object * @param inputStream the input stream of data to uploadCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 2.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/storage/StorageClientFactory.java
// Default to S3-compatible (MinIO, etc.) return StorageType.S3_COMPAT; } /** * Creates a StorageClient based on FessConfig. * * @param fessConfig the Fess configuration * @return configured StorageClient */ public static StorageClient createClient(final FessConfig fessConfig) { final String endpoint = fessConfig.getStorageEndpoint();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 05:56:45 GMT 2025 - 4.2K bytes - Click Count (0) -
fess-crawler-lasta/src/main/resources/crawler/client.xml
<component name="ftpClient" class="org.codelibs.fess.crawler.client.ftp.FtpClient" instance="prototype"> <property name="charset">"UTF-8"</property> </component> <component name="storageClient" class="org.codelibs.fess.crawler.client.storage.StorageClient" instance="prototype"> <property name="charset">"UTF-8"</property> </component> <component name="s3Client"
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Jan 08 04:17:06 GMT 2026 - 3.7K bytes - Click Count (0) -
CLAUDE.md
- `ftp:.*`, `ftps:.*` → FtpClient - `storage:.*` → StorageClient, `s3:.*` → S3Client, `gcs:.*` → GcsClient ### Cloud Storage Clients - **S3Client**: AWS SDK v2, `s3://bucket/path`, properties: `endpoint`, `accessKey`, `secretKey`, `region` - **GcsClient**: Google Cloud SDK, `gcs://bucket/path`, properties: `projectId`, `credentialsFile`, `endpoint` - **StorageClient**: MinIO SDK, `storage://bucket/path` ### Services
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Mar 12 03:39:20 GMT 2026 - 8.1K bytes - Click Count (0)