Package org.apache.wiki.rss
Class Entry
java.lang.Object
org.apache.wiki.rss.Entry
public class Entry extends java.lang.Object
Represents an entry, that is, an unit of change, in a Feed.
-
Constructor Summary
Constructors Constructor Description Entry()
-
Method Summary
Modifier and Type Method Description java.lang.String
getAuthor()
Return the author set by setAuthor().java.lang.String
getContent()
Return the content set bysetContent(String)
.Page
getPage()
Returns the page set bysetPage(Page)
.java.lang.String
getTitle()
Returns the title.java.lang.String
getURL()
Return the URL set by setURL().void
setAuthor(java.lang.String author)
Set the author of this entry.void
setContent(java.lang.String content)
Set the content of this entry.void
setPage(Page p)
Sets the WikiPage to which this Entry refers to.void
setTitle(java.lang.String title)
Sets a title for the change.void
setURL(java.lang.String url)
Set the URL - the permalink - of the Entry.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
Entry
public Entry()
-
-
Method Details
-
setAuthor
Set the author of this entry.- Parameters:
author
- Name of the author.
-
getAuthor
Return the author set by setAuthor().- Returns:
- A String representing the author.
-
getPage
Returns the page set bysetPage(Page)
.- Returns:
- The WikiPage to which this Entry refers to.
-
setPage
Sets the WikiPage to which this Entry refers to.- Parameters:
p
- A valid WikiPage.
-
setTitle
Sets a title for the change. For example, a WebLog entry might use the post title, or a Wiki change could use something like "XXX changed page YYY".- Parameters:
title
- A String description of the change.
-
getTitle
Returns the title.- Returns:
- The title set in setTitle.
-
setURL
Set the URL - the permalink - of the Entry.- Parameters:
url
- An absolute URL to the entry.
-
getURL
Return the URL set by setURL().- Returns:
- The URL.
-
setContent
Set the content of this entry.- Parameters:
content
- A String of the content.
-
getContent
Return the content set bysetContent(String)
.- Returns:
- Whatever was set by setContent().
-