META-INF.mule-rss.xsd Maven / Gradle / Ivy
RSS is a popular syndication format used by many websites to provide a feed of data such
as news or updates.
RSS
RSS Module
Will split the entries of a feed into single entry objects. Each entry will be a separate message in Mule.
Will filter RSS entry objects based on their last update date. This is useful for filtering older entries from the feed. This filter works only on RSS SyndEntry objects not SyndFeed objects.
The date from which to filter events from. Any entries that were last updated before this date will not be accepted. The date format is: yyyy-MM-dd hh:mm:ss, for example 2008-12-25 13:00:00. If only the date is important you can omit the time part. You can set the value to 'now' to set the date and time that the server is started. Do not set this attribute if you want to receive all available entries then any new entries going forward. This is the default behaviour and suitable for many scenarios.
Whether an entry should be accepted if it doesn't have a Last Update date set.
Will filter the whole RSS Feed based on its last update date. This is useful for processing a feed that has not been updated since a specific date. This filter works only on RSS SyndFeed objects.
The date from which to filter events from. Any feeds that were last updated before this date will not be accepted. The date format is: yyyy-MM-dd hh:mm:ss, for example 2008-12-25 13:00:00. If only the date is important you can omit the time part. You can set the value to 'now' to set the date and time that the server is started. Do not set this attribute if you want to receive all available entries then any new entries going forward. This is the default behaviour and suitable for many scenarios.
Whether a Feed should be accepted if it doesn't have a Last Update date set.
Transforms the payload of the message to a {{com.sun.syndication.feed.synd.SyndFeed}} instance.