Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for access_key (0.05 sec)

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

         *
         * @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,
                final String region) {
            this.bucket = 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)
  2. src/main/java/org/codelibs/fess/storage/StorageClientFactory.java

         * @return configured StorageClient
         */
        public static StorageClient createClient(final FessConfig fessConfig) {
            final String endpoint = fessConfig.getStorageEndpoint();
            final String accessKey = fessConfig.getStorageAccessKey();
            final String secretKey = fessConfig.getStorageSecretKey();
            final String bucket = fessConfig.getStorageBucket();
    
            // Get explicit type or auto-detect
    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/Constants.java

        public static final String STORAGE_ENDPOINT = "storage.endpoint";
    
        /** Storage access key configuration key. */
        public static final String STORAGE_ACCESS_KEY = "storage.accesskey";
    
        /** Storage secret key configuration key. */
        public static final String STORAGE_SECRET_KEY = "storage.secretkey";
    
        /** Storage bucket 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)
Back to top