Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for S3Client (0.04 seconds)

  1. fess-crawler-lasta/src/main/resources/crawler/client.xml

    		class="org.codelibs.fess.crawler.client.storage.StorageClient" instance="prototype">
    		<property name="charset">"UTF-8"</property>
    	</component>
    
    	<component name="s3Client"
    		class="org.codelibs.fess.crawler.client.s3.S3Client" instance="prototype">
    		<property name="charset">"UTF-8"</property>
    	</component>
    
    	<component name="gcsClient"
    		class="org.codelibs.fess.crawler.client.gcs.GcsClient" instance="prototype">
    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)
  2. src/main/java/org/codelibs/fess/storage/S3StorageClient.java

                s3Client.headBucket(request);
                return true;
            } catch (final Exception e) {
                return false;
            }
        }
    
        @Override
        public void close() {
            if (s3Client != null) {
                s3Client.close();
            }
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  3. CLAUDE.md

    - `file:.*` → FileSystemClient
    - `smb:.*` → SmbClient (SMB2+), `smb1:.*` → SmbClient (SMB1)
    - `ftp:.*`, `ftps:.*` → FtpClient
    - `storage:.*` → StorageClient, `s3:.*` → S3Client, `gcs:.*` → GcsClient
    
    ### Cloud Storage Clients
    
    - **S3Client**: AWS SDK v2, `s3://bucket/path`, properties: `endpoint`, `accessKey`, `secretKey`, `region`
    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)
Back to Top