Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getStorageSecretKey (0.09 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

            try {
                return MinioClient.builder()
                        .endpoint(fessConfig.getStorageEndpoint())
                        .credentials(fessConfig.getStorageAccessKey(), fessConfig.getStorageSecretKey())
                        .build();
            } catch (final Exception e) {
                throw new StorageException("Failed to create MinioClient: " + fessConfig.getStorageEndpoint(), e);
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setStorageSecretKey(final String value) {
            setSystemProperty(Constants.STORAGE_SECRET_KEY, value);
        }
    
        default String getStorageSecretKey() {
            return getSystemProperty(Constants.STORAGE_SECRET_KEY, StringUtil.EMPTY);
        }
    
        default void setStorageBucket(final String value) {
            setSystemProperty(Constants.STORAGE_BUCKET, value);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
Back to top