Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for aws (0.01 sec)

  1. 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)
  2. 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 patterns
    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