- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for getObjectTags (0.13 seconds)
-
src/main/java/org/codelibs/fess/storage/StorageClient.java
/** * Gets tags/metadata for an object. * * @param objectName the name/path of the object * @return map of tag key-value pairs */ Map<String, String> getObjectTags(String objectName); /** * Sets tags/metadata for an object. * * @param objectName the name/path of the object * @param tags the tags to set */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) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
* @return map of tag key-value pairs * @throws StorageException if retrieving tags fails */ public static Map<String, String> getObjectTags(final String objectName) { try (StorageClient client = StorageClientFactory.createClient()) { return client.getObjectTags(objectName); } catch (final Exception e) { throw new StorageException("Failed to get tags from " + objectName, e); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 22.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/storage/S3StorageClient.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 10.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/storage/GcsStorageClient.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 10.3K bytes - Click Count (0)