Package org.bsc.confluence.xmlrpc.model
Class PageSummary
- java.lang.Object
-
- org.bsc.confluence.xmlrpc.model.MapObject
-
- org.bsc.confluence.xmlrpc.model.PageSummary
-
- All Implemented Interfaces:
ConfluenceService.Model.PageSummary
- Direct Known Subclasses:
Page
public class PageSummary extends MapObject implements ConfluenceService.Model.PageSummary
- Version:
- $Revision$ $Date$
-
-
Constructor Summary
Constructors Constructor Description PageSummary()PageSummary(Map<String,Object> data)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConfluenceService.Model.IDgetId()the id of the pageintgetLocks()the number of locks current on this pageConfluenceService.Model.IDgetParentId()the id of the parent pageStringgetSpace()the key of the space that this page belongs toStringgetTitle()the title of the pageStringgetUrl()the url to view this page onlinevoidsetId(ConfluenceService.Model.ID id)voidsetLocks(int locks)voidsetParentId(ConfluenceService.Model.ID parentId)voidsetSpace(String space)voidsetTitle(String title)voidsetUrl(String url)
-
-
-
Method Detail
-
getId
public ConfluenceService.Model.ID getId()
the id of the page- Specified by:
getIdin interfaceConfluenceService.Model.PageSummary
-
setId
public void setId(ConfluenceService.Model.ID id)
-
getSpace
public String getSpace()
the key of the space that this page belongs to- Specified by:
getSpacein interfaceConfluenceService.Model.PageSummary
-
setSpace
public void setSpace(String space)
-
getParentId
public ConfluenceService.Model.ID getParentId()
the id of the parent page- Specified by:
getParentIdin interfaceConfluenceService.Model.PageSummary
-
setParentId
public void setParentId(ConfluenceService.Model.ID parentId)
-
getTitle
public String getTitle()
the title of the page- Specified by:
getTitlein interfaceConfluenceService.Model.PageSummary
-
setTitle
public void setTitle(String title)
-
getUrl
public String getUrl()
the url to view this page 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)
-
-