Package nl.gx.webmanager.cms.integration
Interface RssFeed
-
public interface RssFeed
Representation of Rss feed objects.- Author:
- arjans
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
Returns description of the feed.RssItem[]
getItems()
Returns array of items/entries in feed.Link
getLink()
Returns link to the feed.String
getTitle()
Returns title of the feed.String
getXmlSource()
Returns xml source of the feed.
-
-
-
Method Detail
-
getItems
RssItem[] getItems()
Returns array of items/entries in feed.- Returns:
- array of items/entries in feed.
-
getTitle
String getTitle()
Returns title of the feed.- Returns:
- title of the feed.
-
getLink
Link getLink()
Returns link to the feed.- Returns:
- link to the feed.
-
getDescription
String getDescription()
Returns description of the feed.- Returns:
- description of the feed.
-
getXmlSource
String getXmlSource()
Returns xml source of the feed.- Returns:
- xml source of the feed.
-
-