- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for aws (0.01 sec)
-
src/main/java/org/codelibs/fess/storage/S3StorageClient.java
/** * Creates a new S3StorageClient instance. * * @param endpoint the S3 endpoint URL (null for AWS default) * @param accessKey the AWS access key * @param secretKey the AWS secret key * @param bucket the bucket name * @param region the AWS region */ public S3StorageClient(final String endpoint, final String accessKey, final String secretKey, final String bucket,Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java
* <li>region - The AWS region (default: us-east-1)</li> * <li>connectTimeout - Connection timeout in milliseconds (default: 10000)</li> * <li>readTimeout - Read timeout in milliseconds (default: 10000)</li> * </ul> * * <p>The client supports URLs in the format: {@code s3://bucket-name/object-path} * * <p>Features: * <ul> * <li>Automatic initialization of AWS S3 client</li>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 21.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/s3/Handler.java
* variables for authentication and endpoint configuration. * </p> */ public class S3URLConnection extends URLConnection { /** The AWS S3 client for storage operations */ private S3Client s3Client; /** The name of the storage bucket */ private String bucketName; /** The name of the storage object */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 07:57:44 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/storage/StorageClientFactory.java
* @return detected storage type */ public static StorageType detectStorageType(final String endpoint) { if (StringUtil.isBlank(endpoint)) { // Default to S3 if no endpoint (uses AWS default) return StorageType.S3; } final String lowerEndpoint = endpoint.toLowerCase(Locale.ROOT); // GCS patternsRegistered: 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/config/openapi/openapi-user.yaml
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu May 09 06:31:27 UTC 2024 - 21.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
* Storage type for cloud storage (s3, gcs, auto). * Determines which storage client to use. */ @Size(max = 20) public String storageType; /** * Storage region for S3. * AWS region where the S3 bucket is located. */ @Size(max = 100) public String storageRegion; /** * GCS project ID. * Google Cloud project ID for GCS storage. */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
// ============================================================ /** Cloud-based search engine type. */ public static final String FESEN_TYPE_CLOUD = "cloud"; /** AWS-based search engine type. */ public static final String FESEN_TYPE_AWS = "aws"; /** Search engine username configuration key. */ public static final String FESEN_USERNAME = "fesen.username"; /** Search engine password configuration key. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 35.2K bytes - Viewed (0)