Class CommaSeparatedToMultivaluedMetadata

  • All Implemented Interfaces:
    Configurable

    public class CommaSeparatedToMultivaluedMetadata
    extends ParseFilter
    Rewrites single metadata containing comma separated values into multiple values for the same key, useful for instance for keyword tags.
    • Constructor Detail

      • CommaSeparatedToMultivaluedMetadata

        public CommaSeparatedToMultivaluedMetadata()
    • Method Detail

      • configure

        public void configure​(@NotNull
                              @NotNull Map<String,​Object> stormConf,
                              @NotNull
                              @NotNull com.fasterxml.jackson.databind.JsonNode filterParams)
        Description copied from interface: Configurable
        Called when this filter is being initialized
        Parameters:
        stormConf - The Storm configuration used for the configurable
        filterParams - the filter specific configuration. Never null
      • filter

        public void filter​(String url,
                           byte[] content,
                           DocumentFragment doc,
                           ParseResult parse)
        Description copied from class: ParseFilter
        Called when parsing a specific page
        Specified by:
        filter in class ParseFilter
        Parameters:
        url - the URL of the page being parsed
        content - the content being parsed
        doc - the DOM tree resulting of the parsing of the content or null if ParseFilter.needsDOM() returns false
        parse - the metadata to be updated with the resulting of the parsing