@ProviderType public class WikiPageServiceWrapper extends java.lang.Object implements WikiPageService, ServiceWrapper<WikiPageService>
WikiPageService.WikiPageService| Constructor and Description |
|---|
WikiPageServiceWrapper(WikiPageService wikiPageService) |
| Modifier and Type | Method and Description |
|---|---|
WikiPage |
addPage(long nodeId,
java.lang.String title,
java.lang.String content,
java.lang.String summary,
boolean minorEdit,
ServiceContext serviceContext) |
WikiPage |
addPage(long nodeId,
java.lang.String title,
java.lang.String content,
java.lang.String summary,
boolean minorEdit,
java.lang.String format,
java.lang.String parentTitle,
java.lang.String redirectTitle,
ServiceContext serviceContext) |
void |
addPageAttachment(long nodeId,
java.lang.String title,
java.lang.String fileName,
java.io.File file,
java.lang.String mimeType) |
void |
addPageAttachment(long nodeId,
java.lang.String title,
java.lang.String fileName,
java.io.InputStream inputStream,
java.lang.String mimeType) |
void |
addPageAttachments(long nodeId,
java.lang.String title,
java.util.List<ObjectValuePair<java.lang.String,java.io.InputStream>> inputStreamOVPs) |
void |
addTempPageAttachment(long nodeId,
java.lang.String fileName,
java.lang.String tempFolderName,
java.io.InputStream inputStream,
java.lang.String mimeType) |
void |
changeParent(long nodeId,
java.lang.String title,
java.lang.String newParentTitle,
ServiceContext serviceContext) |
void |
copyPageAttachments(long templateNodeId,
java.lang.String templateTitle,
long nodeId,
java.lang.String title) |
void |
deletePage(long nodeId,
java.lang.String title) |
void |
deletePage(long nodeId,
java.lang.String title,
double version)
Deprecated.
As of 6.2.0 replaced by
discardDraft(long, String,
double) |
void |
deletePageAttachment(long nodeId,
java.lang.String title,
java.lang.String fileName) |
void |
deletePageAttachments(long nodeId,
java.lang.String title) |
void |
deleteTempPageAttachment(long nodeId,
java.lang.String fileName,
java.lang.String tempFolderName) |
void |
deleteTrashPageAttachments(long nodeId,
java.lang.String title) |
void |
discardDraft(long nodeId,
java.lang.String title,
double version) |
java.lang.String |
getBeanIdentifier()
Returns the Spring bean ID for this bean.
|
java.util.List<WikiPage> |
getChildren(long groupId,
long nodeId,
boolean head,
java.lang.String parentTitle) |
WikiPage |
getDraftPage(long nodeId,
java.lang.String title) |
java.util.List<WikiPage> |
getNodePages(long nodeId,
int max) |
java.lang.String |
getNodePagesRSS(long nodeId,
int max,
java.lang.String type,
double version,
java.lang.String displayStyle,
java.lang.String feedURL,
java.lang.String entryURL)
Deprecated.
As of 6.2.0, replaced by
getNodePagesRSS(long, int,
String, double, String, String, String, String) |
java.lang.String |
getNodePagesRSS(long nodeId,
int max,
java.lang.String type,
double version,
java.lang.String displayStyle,
java.lang.String feedURL,
java.lang.String entryURL,
java.lang.String attachmentURLPrefix) |
java.util.List<WikiPage> |
getOrphans(long groupId,
long nodeId) |
WikiPage |
getPage(long groupId,
long nodeId,
java.lang.String title) |
WikiPage |
getPage(long nodeId,
java.lang.String title) |
WikiPage |
getPage(long nodeId,
java.lang.String title,
java.lang.Boolean head) |
WikiPage |
getPage(long nodeId,
java.lang.String title,
double version) |
java.util.List<WikiPage> |
getPages(long groupId,
long nodeId,
boolean head,
int status,
int start,
int end,
OrderByComparator obc) |
java.util.List<WikiPage> |
getPages(long groupId,
long userId,
long nodeId,
int status,
int start,
int end) |
int |
getPagesCount(long groupId,
long nodeId,
boolean head) |
int |
getPagesCount(long groupId,
long userId,
long nodeId,
int status) |
java.lang.String |
getPagesRSS(long companyId,
long nodeId,
java.lang.String title,
int max,
java.lang.String type,
double version,
java.lang.String displayStyle,
java.lang.String feedURL,
java.lang.String entryURL,
java.util.Locale locale)
Deprecated.
|
java.lang.String |
getPagesRSS(long companyId,
long nodeId,
java.lang.String title,
int max,
java.lang.String type,
double version,
java.lang.String displayStyle,
java.lang.String feedURL,
java.lang.String entryURL,
java.lang.String attachmentURLPrefix,
java.util.Locale locale) |
java.util.List<WikiPage> |
getRecentChanges(long groupId,
long nodeId,
int start,
int end) |
int |
getRecentChangesCount(long groupId,
long nodeId) |
java.lang.String[] |
getTempPageAttachmentNames(long nodeId,
java.lang.String tempFolderName) |
WikiPageService |
getWrappedService() |
WikiPageService |
getWrappedWikiPageService()
Deprecated.
As of 6.1.0, replaced by
getWrappedService() |
void |
movePage(long nodeId,
java.lang.String title,
java.lang.String newTitle,
ServiceContext serviceContext) |
FileEntry |
movePageAttachmentToTrash(long nodeId,
java.lang.String title,
java.lang.String fileName) |
WikiPage |
movePageToTrash(long nodeId,
java.lang.String title) |
WikiPage |
movePageToTrash(long nodeId,
java.lang.String title,
double version) |
void |
restorePageAttachmentFromTrash(long nodeId,
java.lang.String title,
java.lang.String fileName) |
void |
restorePageFromTrash(long resourcePrimKey) |
WikiPage |
revertPage(long nodeId,
java.lang.String title,
double version,
ServiceContext serviceContext) |
void |
setBeanIdentifier(java.lang.String beanIdentifier)
Sets the Spring bean ID for this bean.
|
void |
setWrappedService(WikiPageService wikiPageService) |
void |
setWrappedWikiPageService(WikiPageService wikiPageService)
Deprecated.
As of 6.1.0, replaced by
setWrappedService(com.liferay.portlet.wiki.service.WikiPageService) |
void |
subscribePage(long nodeId,
java.lang.String title) |
void |
unsubscribePage(long nodeId,
java.lang.String title) |
WikiPage |
updatePage(long nodeId,
java.lang.String title,
double version,
java.lang.String content,
java.lang.String summary,
boolean minorEdit,
java.lang.String format,
java.lang.String parentTitle,
java.lang.String redirectTitle,
ServiceContext serviceContext) |
public WikiPageServiceWrapper(WikiPageService wikiPageService)
public java.lang.String getBeanIdentifier()
getBeanIdentifier in interface WikiPageServicepublic void setBeanIdentifier(java.lang.String beanIdentifier)
setBeanIdentifier in interface WikiPageServicebeanIdentifier - the Spring bean ID for this beanpublic WikiPage addPage(long nodeId, java.lang.String title, java.lang.String content, java.lang.String summary, boolean minorEdit, ServiceContext serviceContext) throws PortalException, SystemException
addPage in interface WikiPageServicePortalExceptionSystemExceptionpublic WikiPage addPage(long nodeId, java.lang.String title, java.lang.String content, java.lang.String summary, boolean minorEdit, java.lang.String format, java.lang.String parentTitle, java.lang.String redirectTitle, ServiceContext serviceContext) throws PortalException, SystemException
addPage in interface WikiPageServicePortalExceptionSystemExceptionpublic void addPageAttachment(long nodeId,
java.lang.String title,
java.lang.String fileName,
java.io.File file,
java.lang.String mimeType)
throws PortalException,
SystemException
addPageAttachment in interface WikiPageServicePortalExceptionSystemExceptionpublic void addPageAttachment(long nodeId,
java.lang.String title,
java.lang.String fileName,
java.io.InputStream inputStream,
java.lang.String mimeType)
throws PortalException,
SystemException
addPageAttachment in interface WikiPageServicePortalExceptionSystemExceptionpublic void addPageAttachments(long nodeId,
java.lang.String title,
java.util.List<ObjectValuePair<java.lang.String,java.io.InputStream>> inputStreamOVPs)
throws PortalException,
SystemException
addPageAttachments in interface WikiPageServicePortalExceptionSystemExceptionpublic void addTempPageAttachment(long nodeId,
java.lang.String fileName,
java.lang.String tempFolderName,
java.io.InputStream inputStream,
java.lang.String mimeType)
throws PortalException,
SystemException
addTempPageAttachment in interface WikiPageServicePortalExceptionSystemExceptionpublic void changeParent(long nodeId,
java.lang.String title,
java.lang.String newParentTitle,
ServiceContext serviceContext)
throws PortalException,
SystemException
changeParent in interface WikiPageServicePortalExceptionSystemExceptionpublic void copyPageAttachments(long templateNodeId,
java.lang.String templateTitle,
long nodeId,
java.lang.String title)
throws PortalException,
SystemException
copyPageAttachments in interface WikiPageServicePortalExceptionSystemExceptionpublic void deletePage(long nodeId,
java.lang.String title)
throws PortalException,
SystemException
deletePage in interface WikiPageServicePortalExceptionSystemExceptionpublic void deletePage(long nodeId,
java.lang.String title,
double version)
throws PortalException,
SystemException
discardDraft(long, String,
double)deletePage in interface WikiPageServicePortalExceptionSystemExceptionpublic void deletePageAttachment(long nodeId,
java.lang.String title,
java.lang.String fileName)
throws PortalException,
SystemException
deletePageAttachment in interface WikiPageServicePortalExceptionSystemExceptionpublic void deletePageAttachments(long nodeId,
java.lang.String title)
throws PortalException,
SystemException
deletePageAttachments in interface WikiPageServicePortalExceptionSystemExceptionpublic void deleteTempPageAttachment(long nodeId,
java.lang.String fileName,
java.lang.String tempFolderName)
throws PortalException,
SystemException
deleteTempPageAttachment in interface WikiPageServicePortalExceptionSystemExceptionpublic void deleteTrashPageAttachments(long nodeId,
java.lang.String title)
throws PortalException,
SystemException
deleteTrashPageAttachments in interface WikiPageServicePortalExceptionSystemExceptionpublic void discardDraft(long nodeId,
java.lang.String title,
double version)
throws PortalException,
SystemException
discardDraft in interface WikiPageServicePortalExceptionSystemExceptionpublic java.util.List<WikiPage> getChildren(long groupId, long nodeId, boolean head, java.lang.String parentTitle) throws PortalException, SystemException
getChildren in interface WikiPageServicePortalExceptionSystemExceptionpublic WikiPage getDraftPage(long nodeId, java.lang.String title) throws PortalException, SystemException
getDraftPage in interface WikiPageServicePortalExceptionSystemExceptionpublic java.util.List<WikiPage> getNodePages(long nodeId, int max) throws PortalException, SystemException
getNodePages in interface WikiPageServicePortalExceptionSystemExceptionpublic java.lang.String getNodePagesRSS(long nodeId,
int max,
java.lang.String type,
double version,
java.lang.String displayStyle,
java.lang.String feedURL,
java.lang.String entryURL)
throws PortalException,
SystemException
getNodePagesRSS(long, int,
String, double, String, String, String, String)getNodePagesRSS in interface WikiPageServicePortalExceptionSystemExceptionpublic java.lang.String getNodePagesRSS(long nodeId,
int max,
java.lang.String type,
double version,
java.lang.String displayStyle,
java.lang.String feedURL,
java.lang.String entryURL,
java.lang.String attachmentURLPrefix)
throws PortalException,
SystemException
getNodePagesRSS in interface WikiPageServicePortalExceptionSystemExceptionpublic java.util.List<WikiPage> getOrphans(long groupId, long nodeId) throws PortalException, SystemException
getOrphans in interface WikiPageServicePortalExceptionSystemExceptionpublic WikiPage getPage(long groupId, long nodeId, java.lang.String title) throws PortalException, SystemException
getPage in interface WikiPageServicePortalExceptionSystemExceptionpublic WikiPage getPage(long nodeId, java.lang.String title) throws PortalException, SystemException
getPage in interface WikiPageServicePortalExceptionSystemExceptionpublic WikiPage getPage(long nodeId, java.lang.String title, java.lang.Boolean head) throws PortalException, SystemException
getPage in interface WikiPageServicePortalExceptionSystemExceptionpublic WikiPage getPage(long nodeId, java.lang.String title, double version) throws PortalException, SystemException
getPage in interface WikiPageServicePortalExceptionSystemExceptionpublic java.util.List<WikiPage> getPages(long groupId, long nodeId, boolean head, int status, int start, int end, OrderByComparator obc) throws PortalException, SystemException
getPages in interface WikiPageServicePortalExceptionSystemExceptionpublic java.util.List<WikiPage> getPages(long groupId, long userId, long nodeId, int status, int start, int end) throws PortalException, SystemException
getPages in interface WikiPageServicePortalExceptionSystemExceptionpublic int getPagesCount(long groupId,
long nodeId,
boolean head)
throws PortalException,
SystemException
getPagesCount in interface WikiPageServicePortalExceptionSystemExceptionpublic int getPagesCount(long groupId,
long userId,
long nodeId,
int status)
throws PortalException,
SystemException
getPagesCount in interface WikiPageServicePortalExceptionSystemExceptionpublic java.lang.String getPagesRSS(long companyId,
long nodeId,
java.lang.String title,
int max,
java.lang.String type,
double version,
java.lang.String displayStyle,
java.lang.String feedURL,
java.lang.String entryURL,
java.util.Locale locale)
throws PortalException,
SystemException
getPagesRSS(long, long,
String, int, String, double, String, String, String, String,
java.util.Locale)getPagesRSS in interface WikiPageServicePortalExceptionSystemExceptionpublic java.lang.String getPagesRSS(long companyId,
long nodeId,
java.lang.String title,
int max,
java.lang.String type,
double version,
java.lang.String displayStyle,
java.lang.String feedURL,
java.lang.String entryURL,
java.lang.String attachmentURLPrefix,
java.util.Locale locale)
throws PortalException,
SystemException
getPagesRSS in interface WikiPageServicePortalExceptionSystemExceptionpublic java.util.List<WikiPage> getRecentChanges(long groupId, long nodeId, int start, int end) throws PortalException, SystemException
getRecentChanges in interface WikiPageServicePortalExceptionSystemExceptionpublic int getRecentChangesCount(long groupId,
long nodeId)
throws PortalException,
SystemException
getRecentChangesCount in interface WikiPageServicePortalExceptionSystemExceptionpublic java.lang.String[] getTempPageAttachmentNames(long nodeId,
java.lang.String tempFolderName)
throws PortalException,
SystemException
getTempPageAttachmentNames in interface WikiPageServicePortalExceptionSystemExceptionpublic void movePage(long nodeId,
java.lang.String title,
java.lang.String newTitle,
ServiceContext serviceContext)
throws PortalException,
SystemException
movePage in interface WikiPageServicePortalExceptionSystemExceptionpublic FileEntry movePageAttachmentToTrash(long nodeId, java.lang.String title, java.lang.String fileName) throws PortalException, SystemException
movePageAttachmentToTrash in interface WikiPageServicePortalExceptionSystemExceptionpublic WikiPage movePageToTrash(long nodeId, java.lang.String title) throws PortalException, SystemException
movePageToTrash in interface WikiPageServicePortalExceptionSystemExceptionpublic WikiPage movePageToTrash(long nodeId, java.lang.String title, double version) throws PortalException, SystemException
movePageToTrash in interface WikiPageServicePortalExceptionSystemExceptionpublic void restorePageAttachmentFromTrash(long nodeId,
java.lang.String title,
java.lang.String fileName)
throws PortalException,
SystemException
restorePageAttachmentFromTrash in interface WikiPageServicePortalExceptionSystemExceptionpublic void restorePageFromTrash(long resourcePrimKey)
throws PortalException,
SystemException
restorePageFromTrash in interface WikiPageServicePortalExceptionSystemExceptionpublic WikiPage revertPage(long nodeId, java.lang.String title, double version, ServiceContext serviceContext) throws PortalException, SystemException
revertPage in interface WikiPageServicePortalExceptionSystemExceptionpublic void subscribePage(long nodeId,
java.lang.String title)
throws PortalException,
SystemException
subscribePage in interface WikiPageServicePortalExceptionSystemExceptionpublic void unsubscribePage(long nodeId,
java.lang.String title)
throws PortalException,
SystemException
unsubscribePage in interface WikiPageServicePortalExceptionSystemExceptionpublic WikiPage updatePage(long nodeId, java.lang.String title, double version, java.lang.String content, java.lang.String summary, boolean minorEdit, java.lang.String format, java.lang.String parentTitle, java.lang.String redirectTitle, ServiceContext serviceContext) throws PortalException, SystemException
updatePage in interface WikiPageServicePortalExceptionSystemExceptionpublic WikiPageService getWrappedWikiPageService()
getWrappedService()public void setWrappedWikiPageService(WikiPageService wikiPageService)
setWrappedService(com.liferay.portlet.wiki.service.WikiPageService)public WikiPageService getWrappedService()
getWrappedService in interface ServiceWrapper<WikiPageService>public void setWrappedService(WikiPageService wikiPageService)
setWrappedService in interface ServiceWrapper<WikiPageService>