Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for S3Client (0.09 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java

        /**
         * The AWS S3 client instance for interacting with object storage.
         */
        protected software.amazon.awssdk.services.s3.S3Client awsS3Client;
    
        /**
         * Creates a new S3Client instance.
         */
        public S3Client() {
            super();
        }
    
        @Override
        public synchronized void init() {
            if (isInit) {
                return;
            }
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 21.4K bytes
    - Viewed (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();
            }
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/s3/S3ClientTest.java

                    .singleton("s3Client", S3Client.class);
            s3Client = container.getComponent("s3Client");
            Map<String, Object> params = new HashMap<>();
            params.put("endpoint", endpoint);
            params.put("accessKey", ACCESS_KEY);
            params.put("secretKey", SECRET_KEY);
            params.put("region", "us-east-1");
            s3Client.setInitParameterMap(params);
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 07:57:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  4. 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 */
            private String objectName;
            /** Cached object head response */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 07:57:44 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  5. 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">
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 3.3K bytes
    - Viewed (0)
Back to top