Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for aws (0.31 sec)

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

        /**
         * Creates a new S3StorageClient instance.
         *
         * @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,
    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 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)
  3. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         * Storage type for cloud storage (s3, gcs, auto).
         * Determines which storage client to use.
         */
        @Size(max = 20)
        public String storageType;
    
        /**
         * Storage region for S3.
         * AWS region where the S3 bucket is located.
         */
        @Size(max = 100)
        public String storageRegion;
    
        /**
         * GCS project ID.
         * Google Cloud project ID for GCS storage.
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/Constants.java

        // ============================================================
    
        /** Cloud-based search engine type. */
        public static final String FESEN_TYPE_CLOUD = "cloud";
    
        /** AWS-based search engine type. */
        public static final String FESEN_TYPE_AWS = "aws";
    
        /** Search engine username configuration key. */
        public static final String FESEN_USERNAME = "fesen.username";
    
        /** Search engine password 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