Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StorageItem (0.04 sec)

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

    /**
     * Represents a storage item (file or directory).
     */
    public class StorageItem {
    
        private final String name;
        private final String path;
        private final boolean directory;
        private final long size;
        private final ZonedDateTime lastModified;
        private final String encodedId;
    
        /**
         * Creates a new StorageItem instance.
         *
         * @param name the name of the item
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/storage/StorageClient.java

         *
         * @param prefix the path prefix to list objects under (null or empty for root)
         * @param maxItems maximum number of items to return
         * @return list of storage items
         */
        List<StorageItem> listObjects(String prefix, int maxItems);
    
        /**
         * Gets tags/metadata for an object.
         *
         * @param objectName the name/path of the object
         * @return map of tag key-value pairs
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 2.8K bytes
    - Viewed (0)
Back to top