|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface BlogEntry
Represents a single blog entry.
Nested Class Summary | |
---|---|
static class |
BlogEntry.Category
Represents a weblog category |
static class |
BlogEntry.Content
Represents blog entry content |
static class |
BlogEntry.Person
Represents a blog author or contributor |
Method Summary | |
---|---|
void |
delete()
Delete this entry from blog server |
BlogEntry.Person |
getAuthor()
Get author of this entry |
Blog |
getBlog()
Blog is associated with a blog |
List |
getCategories()
Get categories, a list of BlogEntry.Category objects |
BlogEntry.Content |
getContent()
Get content of this blog entry |
boolean |
getDraft()
Get draft status of this entry |
String |
getId()
Get globally unique ID of this blog entry |
Date |
getModificationDate()
Get update date of this entry |
String |
getPermalink()
Permanent link to this entry (assigned by server) |
Date |
getPublicationDate()
Set publish date of this entry |
String |
getSummary()
Get summary of this blog entry |
String |
getTitle()
Get title of this blog entry |
String |
getToken()
Get token, which can be used to fetch the blog entry |
void |
save()
Save this entry to it's collection. |
void |
setAuthor(BlogEntry.Person author)
Set author of this entry |
void |
setCategories(List categories)
Set categories, a list of BlogEntry.Category objects |
void |
setContent(BlogEntry.Content content)
Set content of this blog entry |
void |
setDraft(boolean draft)
Set draft status of this entry |
void |
setModificationDate(Date date)
Set update date of this entry |
void |
setPublicationDate(Date date)
Get publish date of this entry |
void |
setSummary(String summary)
Set summary of this blog entry |
void |
setTitle(String title)
Set title of this blog entry |
Method Detail |
---|
String getToken()
void save() throws BlogClientException
BlogClientException
void delete() throws BlogClientException
BlogClientException
String getPermalink()
Blog getBlog()
List getCategories()
void setCategories(List categories)
String getId()
String getTitle()
void setTitle(String title)
String getSummary()
void setSummary(String summary)
BlogEntry.Content getContent()
void setContent(BlogEntry.Content content)
boolean getDraft()
void setDraft(boolean draft)
BlogEntry.Person getAuthor()
void setAuthor(BlogEntry.Person author)
Date getPublicationDate()
void setPublicationDate(Date date)
Date getModificationDate()
void setModificationDate(Date date)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |