...
The Media Feed functionality is a simple mechanism to prresent that presents a list of content items to a website visitor. In some XperienCentral projects it is desirable to have a mechanism that overrides and or improves the basic Media Feed mechanism. By adding a customer listener mechanism , you can implement a specific your own interface and take control over the Media Feed output. The listener A custom listenet makes it possible to:
- Overrule the method that retrieves the content items from XperienCentral.
- Overrule the
MediaItemFilter
instance that is used for the default retrieval of items. - Overrule the
MediaItemSortOptions
instance that is used for default sorting of to sort the items. - Perform custom filtering on the retrieved items (, given the items, filter options and sort options).
- Determine which
queryString
parameters parameter(s) should be passed on to the Media Feed JSP.
...