Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for metadata (0.07 sec)

  1. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

            return switch (responseType) {
            case METADATA -> getMetadataResponse();
            case LOGOUT -> getLogoutResponse();
            default -> null;
            };
        }
    
        /**
         * Gets the metadata response.
         * @return The metadata response.
         */
        protected ActionResponse getMetadataResponse() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 20.2K bytes
    - Viewed (3)
  2. src/main/java/org/codelibs/fess/storage/StorageClient.java

         */
        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
         */
        Map<String, String> getObjectTags(String objectName);
    
        /**
         * Sets tags/metadata for an object.
         *
         * @param objectName the name/path of the object
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

                if (blob == null) {
                    return Collections.emptyMap();
                }
                // GCS uses metadata instead of tags
                final Map<String, String> metadata = blob.getMetadata();
                return metadata != null ? new HashMap<>(metadata) : Collections.emptyMap();
            } catch (final Exception e) {
                throw new StorageException("Failed to get tags from " + objectName, e);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String CRAWLER_METADATA_CONTENT_EXCLUDES = "crawler.metadata.content.excludes";
    
        /** The key of the configuration. e.g. title=title:string<br>
         * Title=title:string<br>
         * dc:title=title:string<br>
         *  */
        String CRAWLER_METADATA_NAME_MAPPING = "crawler.metadata.name.mapping";
    
        /** The key of the configuration. e.g. //BODY */
    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