- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for StorageItem (0.44 seconds)
-
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
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 2.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/storage/StorageItemTest.java
final StorageItem item = new StorageItem("", "/path/", false, 100L, null, ""); assertEquals("", item.getName()); assertEquals("/path/", item.getPath()); assertEquals("", item.getEncodedId()); } public void test_largeFileSize() { final long largeSize = 10737418240L; // 10 GBCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 12:58:11 GMT 2026 - 4.6K bytes - Click Count (0) -
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 */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 2.8K bytes - Click Count (0)