Package org.bsc.confluence.xmlrpc
Class BlogEntrySummary
- java.lang.Object
-
- org.bsc.confluence.xmlrpc.MapObject
-
- org.bsc.confluence.xmlrpc.BlogEntrySummary
-
public class BlogEntrySummary extends MapObject
- Version:
- $Revision$ $Date$
-
-
Constructor Summary
Constructors Constructor Description BlogEntrySummary()BlogEntrySummary(Map<String,Object> data)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()the id of the blog entryintgetLocks()the number of locks current on this pageDategetPublishDate()the date the blog post was publishedStringgetSpace()the key of the space that this blog entry belongs toStringgetTitle()the title of the blog entryStringgetUrl()the url to view this blog entry onlinevoidsetId(String id)voidsetLocks(int locks)voidsetPublishDate(Date publishDate)voidsetSpace(String space)voidsetTitle(String title)voidsetUrl(String url)Map<String,Object>toRawMap()
-
-
-
Method Detail
-
getId
public String getId()
the id of the blog entry
-
setId
public void setId(String id)
-
getSpace
public String getSpace()
the key of the space that this blog entry belongs to
-
setSpace
public void setSpace(String space)
-
getTitle
public String getTitle()
the title of the blog entry
-
setTitle
public void setTitle(String title)
-
getUrl
public String getUrl()
the url to view this blog entry online
-
setUrl
public void setUrl(String url)
-
getLocks
public int getLocks()
the number of locks current on this page
-
setLocks
public void setLocks(int locks)
-
getPublishDate
public Date getPublishDate()
the date the blog post was published
-
setPublishDate
public void setPublishDate(Date publishDate)
-
-