- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getStorageEndpoint (0.16 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
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) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
form.notificationLogin = fessConfig.getNotificationLogin(); form.notificationSearchTop = fessConfig.getNotificationSearchTop(); form.storageEndpoint = fessConfig.getStorageEndpoint(); form.storageAccessKey = StringUtil.isNotBlank(fessConfig.getStorageAccessKey()) ? DUMMY_PASSWORD : StringUtil.EMPTY;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
} default void setStorageEndpoint(final String value) { setSystemProperty(Constants.STORAGE_ENDPOINT, value); } default String getStorageEndpoint() { return getSystemProperty(Constants.STORAGE_ENDPOINT, StringUtil.EMPTY); } default void setStorageAccessKey(final String value) { setSystemProperty(Constants.STORAGE_ACCESS_KEY, 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) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
runtime.registerData("installationLink", getHelpUrl(installationLink)); runtime.registerData("storageEnabled", StringUtil.isNotBlank(fessConfig.getStorageEndpoint()) && StringUtil.isNotBlank(fessConfig.getStorageBucket())); final boolean eoled = isEoled(); runtime.registerData("eoled", eoled); if (eoled) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0)