Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getStorageEndpoint (0.08 sec)

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

         * @param fessConfig the Fess configuration
         * @return configured StorageClient
         */
        public static StorageClient createClient(final FessConfig fessConfig) {
            final String endpoint = fessConfig.getStorageEndpoint();
            final String accessKey = fessConfig.getStorageAccessKey();
            final String secretKey = fessConfig.getStorageSecretKey();
            final String bucket = fessConfig.getStorageBucket();
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

                    }
                }
            } catch (final Exception e) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Failed to access storage endpoint: {}", fessConfig.getStorageEndpoint(), e);
                }
            }
    
            list.addAll(fileList);
            return list;
        }
    
        /**
         * Extracts the file name from a full object path.
         *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  3. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  4. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  5. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 88.2K bytes
    - Viewed (0)
Back to top