Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getStorageAccessKey (0.12 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            form.notificationSearchTop = fessConfig.getNotificationSearchTop();
            form.storageEndpoint = fessConfig.getStorageEndpoint();
            form.storageAccessKey = StringUtil.isNotBlank(fessConfig.getStorageAccessKey()) ? DUMMY_PASSWORD : StringUtil.EMPTY;
            form.storageSecretKey = StringUtil.isNotBlank(fessConfig.getStorageSecretKey()) ? DUMMY_PASSWORD : StringUtil.EMPTY;
            form.storageBucket = fessConfig.getStorageBucket();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

        protected static MinioClient createClient(final FessConfig fessConfig) {
            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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setStorageAccessKey(final String value) {
            setSystemProperty(Constants.STORAGE_ACCESS_KEY, value);
        }
    
        default String getStorageAccessKey() {
            return getSystemProperty(Constants.STORAGE_ACCESS_KEY, StringUtil.EMPTY);
        }
    
        default void setStorageSecretKey(final String value) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:15 UTC 2024
    - 87.2K bytes
    - Viewed (0)
Back to top