Package org.alfresco.service.cmr.wiki
Interface WikiPageInfo
-
- All Superinterfaces:
org.alfresco.repo.security.permissions.PermissionCheckValue,Serializable
- All Known Implementing Classes:
WikiPageInfoImpl
public interface WikiPageInfo extends Serializable, org.alfresco.repo.security.permissions.PermissionCheckValue
This class represents a Wiki Paeg in a site- Since:
- 4.0
- Author:
- Nick Burch
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.alfresco.service.cmr.repository.NodeRefgetContainerNodeRef()StringgetContents()DategetCreatedAt()StringgetCreator()DategetModifiedAt()StringgetModifier()org.alfresco.service.cmr.repository.NodeRefgetNodeRef()StringgetSystemName()List<String>getTags()StringgetTitle()voidsetContents(String contentHTML)Sets the (HTML) Content of the wiki pagevoidsetTitle(String title)Sets the Title of the wiki page
-
-
-
Method Detail
-
getNodeRef
org.alfresco.service.cmr.repository.NodeRef getNodeRef()
- Specified by:
getNodeRefin interfaceorg.alfresco.repo.security.permissions.PermissionCheckValue- Returns:
- the NodeRef of the underlying wiki page
-
getContainerNodeRef
org.alfresco.service.cmr.repository.NodeRef getContainerNodeRef()
- Returns:
- the NodeRef of the site container this belongs to
-
getSystemName
String getSystemName()
- Returns:
- the name of the wiki page
-
getTitle
String getTitle()
- Returns:
- the Title of the wiki page
-
setTitle
void setTitle(String title)
Sets the Title of the wiki page
-
getContents
String getContents()
- Returns:
- the HTML Content of the wiki page
-
setContents
void setContents(String contentHTML)
Sets the (HTML) Content of the wiki page
-
getCreator
String getCreator()
- Returns:
- the creator of the wiki page
-
getModifier
String getModifier()
- Returns:
- the modifier of the wiki page
-
getCreatedAt
Date getCreatedAt()
- Returns:
- the creation date and time
-
getModifiedAt
Date getModifiedAt()
- Returns:
- the modification date and time
-
-