Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for S3StorageClient (0.34 sec)

  1. src/main/java/org/codelibs/fess/storage/S3StorageClient.java

     * Supports Amazon S3, MinIO, and other S3-compatible storage systems.
     */
    public class S3StorageClient implements StorageClient {
    
        private static final Logger logger = LogManager.getLogger(S3StorageClient.class);
    
        private final S3Client s3Client;
        private final String bucket;
    
        /**
         * Creates a new S3StorageClient instance.
         *
         * @param endpoint the S3 endpoint URL (null for AWS default)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/storage/StorageClientFactory.java

                return new GcsStorageClient(fessConfig.getStorageProjectId(), bucket, endpoint, fessConfig.getStorageCredentialsPath());
            case S3:
            case S3_COMPAT:
            default:
                return new S3StorageClient(endpoint, accessKey, secretKey, bucket, fessConfig.getStorageRegion());
            }
        }
    
        /**
         * Creates a StorageClient using the default FessConfig.
         *
         * @return configured StorageClient
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 4.2K bytes
    - Viewed (0)
Back to top