Package rife.feed

Class Entry

java.lang.Object
rife.feed.Entry

public class Entry extends Object
A bean representing an entry in a feed.

An Entry is a single piece of content, (forum message, news article, blog post), with its own title, link to permanent content, published date, content and author. Has a many-to-one relationship with Feed.

Since:
1.8.0
See Also:
  • Constructor Details

    • Entry

      public Entry()
  • Method Details

    • id

      public Entry id(String id)
    • getId

      public String getId()
    • setId

      public void setId(String id)
    • title

      public Entry title(String title)
    • getTitle

      public String getTitle()
    • setTitle

      public void setTitle(String title)
    • link

      public Entry link(String link)
    • getLink

      public String getLink()
    • setLink

      public void setLink(String link)
    • categories

      public Entry categories(List<String> categories)
    • getCategories

      public List<String> getCategories()
    • setCategories

      public void setCategories(List<String> categories)
    • publishedDate

      public Entry publishedDate(Date publishedDate)
    • getPublishedDate

      public Date getPublishedDate()
    • setPublishedDate

      public void setPublishedDate(Date publishedDate)
    • content

      public Entry content(String content)
    • getContent

      public String getContent()
    • setContent

      public void setContent(String content)
    • author

      public Entry author(String author)
    • getAuthor

      public String getAuthor()
    • setAuthor

      public void setAuthor(String author)
    • getType

      public String getType()
    • setType

      public void setType(String type)
    • type

      public Entry type(String type)
    • isEscaped

      public boolean isEscaped()
    • setEscaped

      public void setEscaped(boolean escaped)
    • escaped

      public Entry escaped(boolean escaped)
    • image

      public Entry image(String image)
    • getImage

      public String getImage()
    • setImage

      public void setImage(String image)