public interface RssEntity extends Serializable, Cloneable
RssEntry
objects and RssFeed
objects.Modifier and Type | Method and Description |
---|---|
String |
getAuthor()
Get this entity's author.
|
List<String> |
getAuthors()
Get this entity's authors.
|
Date |
getDate()
Get this entity's publication date.
|
String |
getDescription()
Get this entity's description.
|
URL |
getLink()
Get this entity's link as a URL.
|
String |
getTitle()
Get this entity's title.
|
void |
setAuthor(String author)
Set this entity's author.
|
void |
setAuthors(List<String> authors)
Set this entity's authors.
|
void |
setDate(Date date)
Set this entity's publication date.
|
void |
setDescription(String description)
Set this entity's description.
|
void |
setLink(URL link)
Set this entity's link.
|
void |
setTitle(String title)
Set this entity's title.
|
String getAuthor()
void setAuthor(String author)
author
- This entity's authorvoid setAuthors(List<String> authors)
authors
- A list of this entity's authorsDate getDate()
void setDate(Date date)
date
- This entity's dateString getDescription()
void setDescription(String description)
description
- The new descriptionURL getLink()
void setLink(URL link)
link
- The new URL to useString getTitle()
void setTitle(String title)
title
- The entity's title