Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getStorageMaxItemsInPageAsInteger (1.35 sec)

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

                // Ensure bucket exists on first access
                client.ensureBucketExists();
    
                final List<StorageItem> items = client.listObjects(prefix, fessConfig.getStorageMaxItemsInPageAsInteger());
    
                for (final StorageItem item : items) {
                    final Map<String, Object> map = new HashMap<>();
                    map.put("id", item.getEncodedId());
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         * @throws NumberFormatException When the property is not integer.
         */
        Integer getStorageMaxItemsInPageAsInteger();
    
        /**
         * Get the value for the key 'password.invalid.admin.passwords'. <br>
         * The value is, e.g. admin <br>
         * comment: List of invalid admin passwords.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
Back to top