Package org.bsc.confluence.xmlrpc
Class BlogEntry
- java.lang.Object
-
- org.bsc.confluence.xmlrpc.MapObject
-
- org.bsc.confluence.xmlrpc.BlogEntry
-
public class BlogEntry extends MapObject
- Version:
- $Revision$ $Date$
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAuthor()username of the authorStringgetContent()the blog entry contentStringgetId()the id of the blog entryintgetLocks()the number of locks current on this pageStringgetSpace()the key of the space that this blog entry belongs toStringgetTitle()the title of the pageStringgetUrl()the url to view this blog entry onlineintgetVersion()the version number of this blog entryvoidsetAuthor(String author)voidsetContent(String content)voidsetId(String id)voidsetLocks(int locks)voidsetSpace(String space)voidsetTitle(String title)voidsetUrl(String url)voidsetVersion(int version)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)
-
getAuthor
public String getAuthor()
username of the author
-
setAuthor
public void setAuthor(String author)
-
getTitle
public String getTitle()
the title of the page
-
setTitle
public void setTitle(String title)
-
getUrl
public String getUrl()
the url to view this blog entry online
-
setUrl
public void setUrl(String url)
-
getVersion
public int getVersion()
the version number of this blog entry
-
setVersion
public void setVersion(int version)
-
getContent
public String getContent()
the blog entry content
-
setContent
public void setContent(String content)
-
getLocks
public int getLocks()
the number of locks current on this page
-
setLocks
public void setLocks(int locks)
-
-