@Deprecated public abstract class BaseBlogEntry extends java.lang.Object implements BlogEntry
BlogEntry.Category, BlogEntry.Content, BlogEntry.Person
Modifier and Type | Field and Description |
---|---|
protected BlogEntry.Person |
author
Deprecated.
|
private Blog |
blog
Deprecated.
|
protected java.util.List<BlogEntry.Category> |
categories
Deprecated.
|
protected BlogEntry.Content |
content
Deprecated.
|
protected boolean |
draft
Deprecated.
|
protected java.lang.String |
id
Deprecated.
|
protected java.util.Date |
modificationDate
Deprecated.
|
protected java.lang.String |
permalink
Deprecated.
|
protected java.util.Date |
publicationDate
Deprecated.
|
protected java.lang.String |
summary
Deprecated.
|
protected java.lang.String |
title
Deprecated.
|
Constructor and Description |
---|
BaseBlogEntry(Blog blog)
Deprecated.
Contruct abstract blog entry.
|
Modifier and Type | Method and Description |
---|---|
BlogEntry.Person |
getAuthor()
Deprecated.
Get author of this entry
|
Blog |
getBlog()
Deprecated.
Blog is associated with a blog
|
java.util.List<BlogEntry.Category> |
getCategories()
Deprecated.
Get categories, a list of BlogEntry.Category objects
|
BlogEntry.Content |
getContent()
Deprecated.
Get content of this blog entry
|
boolean |
getDraft()
Deprecated.
Get draft status of this entry
|
java.lang.String |
getId()
Deprecated.
Get globally unique ID of this blog entry
|
java.util.Date |
getModificationDate()
Deprecated.
Get update date of this entry
|
java.lang.String |
getPermalink()
Deprecated.
Permanent link to this entry (assigned by server)
|
java.util.Date |
getPublicationDate()
Deprecated.
Set publish date of this entry
|
java.lang.String |
getSummary()
Deprecated.
Get summary of this blog entry
|
java.lang.String |
getTitle()
Deprecated.
Get title of this blog entry
|
void |
setAuthor(BlogEntry.Person author)
Deprecated.
Set author of this entry
|
(package private) void |
setBlog(Blog blog)
Deprecated.
|
void |
setCategories(java.util.List<BlogEntry.Category> categories)
Deprecated.
Set categories, a list of BlogEntry.Category objects
|
void |
setContent(BlogEntry.Content content)
Deprecated.
Set content of this blog entry
|
void |
setDraft(boolean draft)
Deprecated.
Set draft status of this entry
|
void |
setModificationDate(java.util.Date date)
Deprecated.
Set update date of this entry
|
(package private) void |
setPermalink(java.lang.String permalink)
Deprecated.
|
void |
setPublicationDate(java.util.Date pubDate)
Deprecated.
Get publish date of this entry
|
void |
setSummary(java.lang.String summary)
Deprecated.
Set summary of this blog entry
|
void |
setTitle(java.lang.String title)
Deprecated.
Set title of this blog entry
|
java.lang.String |
toString()
Deprecated.
String representation, returns id.
|
protected java.lang.String id
protected BlogEntry.Person author
protected BlogEntry.Content content
protected java.lang.String title
protected java.lang.String permalink
protected java.lang.String summary
protected java.util.Date modificationDate
protected java.util.Date publicationDate
protected java.util.List<BlogEntry.Category> categories
protected boolean draft
private Blog blog
public BaseBlogEntry(Blog blog)
public java.lang.String getId()
public java.lang.String getPermalink()
getPermalink
in interface BlogEntry
void setPermalink(java.lang.String permalink)
public BlogEntry.Person getAuthor()
public void setAuthor(BlogEntry.Person author)
public BlogEntry.Content getContent()
getContent
in interface BlogEntry
public void setContent(BlogEntry.Content content)
setContent
in interface BlogEntry
public boolean getDraft()
public void setDraft(boolean draft)
public java.util.Date getPublicationDate()
getPublicationDate
in interface BlogEntry
public void setPublicationDate(java.util.Date pubDate)
setPublicationDate
in interface BlogEntry
public java.util.Date getModificationDate()
getModificationDate
in interface BlogEntry
public void setModificationDate(java.util.Date date)
setModificationDate
in interface BlogEntry
public java.lang.String getTitle()
public void setTitle(java.lang.String title)
public java.lang.String getSummary()
getSummary
in interface BlogEntry
public void setSummary(java.lang.String summary)
setSummary
in interface BlogEntry
public java.util.List<BlogEntry.Category> getCategories()
getCategories
in interface BlogEntry
public void setCategories(java.util.List<BlogEntry.Category> categories)
setCategories
in interface BlogEntry
public Blog getBlog()
void setBlog(Blog blog)
public java.lang.String toString()
toString
in class java.lang.Object