public interface WikiService
| Modifier and Type | Method and Description |
|---|---|
WikiPageInfo |
createWikiPage(String siteShortName,
String title,
String contents)
Creates a new
WikiPageInfo in the given site, with the
specified contents |
void |
deleteWikiPage(WikiPageInfo wikiPage)
Deletes an existing
WikiPageInfo from the repository |
WikiPageInfo |
getWikiPage(String siteShortName,
String pageName)
Retrieves an existing
WikiPageInfo from the repository |
org.alfresco.query.PagingResults<WikiPageInfo> |
listWikiPages(String siteShortName,
org.alfresco.query.PagingRequest paging)
Retrieves all
WikiPageInfo instances in the repository
for the given site. |
org.alfresco.query.PagingResults<WikiPageInfo> |
listWikiPages(String siteShortName,
String user,
org.alfresco.query.PagingRequest paging)
Retrieves all
WikiPageInfo instances in the repository
for the given site and the specified user. |
org.alfresco.query.PagingResults<WikiPageInfo> |
listWikiPagesByCreated(String siteShortName,
Date from,
Date to,
org.alfresco.query.PagingRequest paging)
Retrieves all
WikiPageInfo instances in the repository
for the given site, created in the specified date range |
org.alfresco.query.PagingResults<WikiPageInfo> |
listWikiPagesByModified(String siteShortName,
Date from,
Date to,
org.alfresco.query.PagingRequest paging)
Retrieves all
WikiPageInfo instances in the repository
for the given site, modified in the specified date range |
WikiPageInfo |
updateWikiPage(WikiPageInfo wikiPage)
Updates an existing
WikiPageInfo in the repository. |
@NotAuditable WikiPageInfo createWikiPage(String siteShortName, String title, String contents)
WikiPageInfo in the given site, with the
specified contentsWikiPageInfo@NotAuditable WikiPageInfo updateWikiPage(WikiPageInfo wikiPage)
WikiPageInfo in the repository.WikiPageInfo@NotAuditable void deleteWikiPage(WikiPageInfo wikiPage)
WikiPageInfo from the repository@NotAuditable WikiPageInfo getWikiPage(String siteShortName, String pageName)
WikiPageInfo from the repository@NotAuditable org.alfresco.query.PagingResults<WikiPageInfo> listWikiPages(String siteShortName, org.alfresco.query.PagingRequest paging)
WikiPageInfo instances in the repository
for the given site.@NotAuditable org.alfresco.query.PagingResults<WikiPageInfo> listWikiPages(String siteShortName, String user, org.alfresco.query.PagingRequest paging)
WikiPageInfo instances in the repository
for the given site and the specified user.@NotAuditable org.alfresco.query.PagingResults<WikiPageInfo> listWikiPagesByCreated(String siteShortName, Date from, Date to, org.alfresco.query.PagingRequest paging)
WikiPageInfo instances in the repository
for the given site, created in the specified date range@NotAuditable org.alfresco.query.PagingResults<WikiPageInfo> listWikiPagesByModified(String siteShortName, Date from, Date to, org.alfresco.query.PagingRequest paging)
WikiPageInfo instances in the repository
for the given site, modified in the specified date rangeCopyright © 2005–2014 Alfresco Software. All rights reserved.