|
Liferay 7.0-ce-m3 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.liferay.portlet.wiki.service.WikiPageServiceWrapper
@ProviderType public class WikiPageServiceWrapper
Provides a wrapper for WikiPageService.
WikiPageService| Constructor Summary | |
|---|---|
WikiPageServiceWrapper(WikiPageService wikiPageService)
|
|
| Method Summary | |
|---|---|
WikiPage |
addPage(long nodeId,
String title,
String content,
String summary,
boolean minorEdit,
ServiceContext serviceContext)
|
WikiPage |
addPage(long nodeId,
String title,
String content,
String summary,
boolean minorEdit,
String format,
String parentTitle,
String redirectTitle,
ServiceContext serviceContext)
|
void |
addPageAttachment(long nodeId,
String title,
String fileName,
File file,
String mimeType)
|
void |
addPageAttachment(long nodeId,
String title,
String fileName,
InputStream inputStream,
String mimeType)
|
void |
addPageAttachments(long nodeId,
String title,
List<ObjectValuePair<String,InputStream>> inputStreamOVPs)
|
void |
addTempFileEntry(long nodeId,
String folderName,
String fileName,
InputStream inputStream,
String mimeType)
|
void |
addTempPageAttachment(long nodeId,
String fileName,
String tempFolderName,
InputStream inputStream,
String mimeType)
Deprecated. As of 7.0.0 replaced by addTempFileEntry(long,
String, String, InputStream, String) |
void |
changeNode(long nodeId,
String title,
long newNodeId,
ServiceContext serviceContext)
|
void |
changeParent(long nodeId,
String title,
String newParentTitle,
ServiceContext serviceContext)
|
void |
copyPageAttachments(long templateNodeId,
String templateTitle,
long nodeId,
String title)
|
void |
deletePage(long nodeId,
String title)
|
void |
deletePage(long nodeId,
String title,
double version)
Deprecated. As of 6.2.0 replaced by discardDraft(long, String,
double) |
void |
deletePageAttachment(long nodeId,
String title,
String fileName)
|
void |
deletePageAttachments(long nodeId,
String title)
|
void |
deleteTempFileEntry(long nodeId,
String folderName,
String fileName)
|
void |
deleteTrashPageAttachments(long nodeId,
String title)
|
void |
discardDraft(long nodeId,
String title,
double version)
|
WikiPage |
fetchPage(long nodeId,
String title,
double version)
|
String |
getBeanIdentifier()
Returns the Spring bean ID for this bean. |
List<WikiPage> |
getChildren(long groupId,
long nodeId,
boolean head,
String parentTitle)
|
WikiPage |
getDraftPage(long nodeId,
String title)
|
List<WikiPage> |
getNodePages(long nodeId,
int max)
|
String |
getNodePagesRSS(long nodeId,
int max,
String type,
double version,
String displayStyle,
String feedURL,
String entryURL)
Deprecated. As of 6.2.0, replaced by getNodePagesRSS(long, int,
String, double, String, String, String, String) |
String |
getNodePagesRSS(long nodeId,
int max,
String type,
double version,
String displayStyle,
String feedURL,
String entryURL,
String attachmentURLPrefix)
|
List<WikiPage> |
getOrphans(long groupId,
long nodeId)
|
WikiPage |
getPage(long groupId,
long nodeId,
String title)
|
WikiPage |
getPage(long nodeId,
String title)
|
WikiPage |
getPage(long nodeId,
String title,
Boolean head)
|
WikiPage |
getPage(long nodeId,
String title,
double version)
|
List<WikiPage> |
getPages(long groupId,
long nodeId,
boolean head,
int status,
int start,
int end,
OrderByComparator<WikiPage> obc)
|
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)
|
String |
getPagesRSS(long companyId,
long nodeId,
String title,
int max,
String type,
double version,
String displayStyle,
String feedURL,
String entryURL,
Locale locale)
Deprecated. As of 6.2.0, replaced by getPagesRSS(long, long,
String, int, String, double, String, String, String, String,
java.util.Locale) |
String |
getPagesRSS(long companyId,
long nodeId,
String title,
int max,
String type,
double version,
String displayStyle,
String feedURL,
String entryURL,
String attachmentURLPrefix,
Locale locale)
|
List<WikiPage> |
getRecentChanges(long groupId,
long nodeId,
int start,
int end)
|
int |
getRecentChangesCount(long groupId,
long nodeId)
|
String[] |
getTempFileNames(long nodeId,
String folderName)
|
WikiPageService |
getWrappedService()
|
WikiPageService |
getWrappedWikiPageService()
Deprecated. As of 6.1.0, replaced by getWrappedService() |
void |
movePage(long nodeId,
String title,
String newTitle,
ServiceContext serviceContext)
Deprecated. As of 6.2.0, replaced by renamePage(long, String,
String, ServiceContext) * |
FileEntry |
movePageAttachmentToTrash(long nodeId,
String title,
String fileName)
|
WikiPage |
movePageToTrash(long nodeId,
String title)
|
WikiPage |
movePageToTrash(long nodeId,
String title,
double version)
|
void |
renamePage(long nodeId,
String title,
String newTitle,
ServiceContext serviceContext)
|
void |
restorePageAttachmentFromTrash(long nodeId,
String title,
String fileName)
|
void |
restorePageFromTrash(long resourcePrimKey)
|
WikiPage |
revertPage(long nodeId,
String title,
double version,
ServiceContext serviceContext)
|
void |
setBeanIdentifier(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,
String title)
|
void |
unsubscribePage(long nodeId,
String title)
|
WikiPage |
updatePage(long nodeId,
String title,
double version,
String content,
String summary,
boolean minorEdit,
String format,
String parentTitle,
String redirectTitle,
ServiceContext serviceContext)
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public WikiPageServiceWrapper(WikiPageService wikiPageService)
| Method Detail |
|---|
public WikiPage addPage(long nodeId,
String title,
String content,
String summary,
boolean minorEdit,
String format,
String parentTitle,
String redirectTitle,
ServiceContext serviceContext)
throws PortalException
addPage in interface WikiPageServicePortalException
public WikiPage addPage(long nodeId,
String title,
String content,
String summary,
boolean minorEdit,
ServiceContext serviceContext)
throws PortalException
addPage in interface WikiPageServicePortalException
public void addPageAttachment(long nodeId,
String title,
String fileName,
File file,
String mimeType)
throws PortalException
addPageAttachment in interface WikiPageServicePortalException
public void addPageAttachment(long nodeId,
String title,
String fileName,
InputStream inputStream,
String mimeType)
throws PortalException
addPageAttachment in interface WikiPageServicePortalException
public void addPageAttachments(long nodeId,
String title,
List<ObjectValuePair<String,InputStream>> inputStreamOVPs)
throws PortalException
addPageAttachments in interface WikiPageServicePortalException
public void addTempFileEntry(long nodeId,
String folderName,
String fileName,
InputStream inputStream,
String mimeType)
throws PortalException
addTempFileEntry in interface WikiPageServicePortalException
@Deprecated
public void addTempPageAttachment(long nodeId,
String fileName,
String tempFolderName,
InputStream inputStream,
String mimeType)
throws PortalException
addTempFileEntry(long,
String, String, InputStream, String)
addTempPageAttachment in interface WikiPageServicePortalException
public void changeNode(long nodeId,
String title,
long newNodeId,
ServiceContext serviceContext)
throws PortalException
changeNode in interface WikiPageServicePortalException
public void changeParent(long nodeId,
String title,
String newParentTitle,
ServiceContext serviceContext)
throws PortalException
changeParent in interface WikiPageServicePortalException
public void copyPageAttachments(long templateNodeId,
String templateTitle,
long nodeId,
String title)
throws PortalException
copyPageAttachments in interface WikiPageServicePortalException
public void deletePage(long nodeId,
String title)
throws PortalException
deletePage in interface WikiPageServicePortalException
@Deprecated
public void deletePage(long nodeId,
String title,
double version)
throws PortalException
discardDraft(long, String,
double)
deletePage in interface WikiPageServicePortalException
public void deletePageAttachment(long nodeId,
String title,
String fileName)
throws PortalException
deletePageAttachment in interface WikiPageServicePortalException
public void deletePageAttachments(long nodeId,
String title)
throws PortalException
deletePageAttachments in interface WikiPageServicePortalException
public void deleteTempFileEntry(long nodeId,
String folderName,
String fileName)
throws PortalException
deleteTempFileEntry in interface WikiPageServicePortalException
public void deleteTrashPageAttachments(long nodeId,
String title)
throws PortalException
deleteTrashPageAttachments in interface WikiPageServicePortalException
public void discardDraft(long nodeId,
String title,
double version)
throws PortalException
discardDraft in interface WikiPageServicePortalException
public WikiPage fetchPage(long nodeId,
String title,
double version)
throws PortalException
fetchPage in interface WikiPageServicePortalExceptionpublic String getBeanIdentifier()
getBeanIdentifier in interface WikiPageService
public List<WikiPage> getChildren(long groupId,
long nodeId,
boolean head,
String parentTitle)
throws PortalException
getChildren in interface WikiPageServicePortalException
public WikiPage getDraftPage(long nodeId,
String title)
throws PortalException
getDraftPage in interface WikiPageServicePortalException
public List<WikiPage> getNodePages(long nodeId,
int max)
throws PortalException
getNodePages in interface WikiPageServicePortalException
@Deprecated
public String getNodePagesRSS(long nodeId,
int max,
String type,
double version,
String displayStyle,
String feedURL,
String entryURL)
throws PortalException
getNodePagesRSS(long, int,
String, double, String, String, String, String)
getNodePagesRSS in interface WikiPageServicePortalException
public String getNodePagesRSS(long nodeId,
int max,
String type,
double version,
String displayStyle,
String feedURL,
String entryURL,
String attachmentURLPrefix)
throws PortalException
getNodePagesRSS in interface WikiPageServicePortalException
public List<WikiPage> getOrphans(long groupId,
long nodeId)
throws PortalException
getOrphans in interface WikiPageServicePortalException
public WikiPage getPage(long groupId,
long nodeId,
String title)
throws PortalException
getPage in interface WikiPageServicePortalException
public WikiPage getPage(long nodeId,
String title)
throws PortalException
getPage in interface WikiPageServicePortalException
public WikiPage getPage(long nodeId,
String title,
Boolean head)
throws PortalException
getPage in interface WikiPageServicePortalException
public WikiPage getPage(long nodeId,
String title,
double version)
throws PortalException
getPage in interface WikiPageServicePortalException
public List<WikiPage> getPages(long groupId,
long nodeId,
boolean head,
int status,
int start,
int end,
OrderByComparator<WikiPage> obc)
throws PortalException
getPages in interface WikiPageServicePortalException
public List<WikiPage> getPages(long groupId,
long userId,
long nodeId,
int status,
int start,
int end)
throws PortalException
getPages in interface WikiPageServicePortalException
public int getPagesCount(long groupId,
long nodeId,
boolean head)
throws PortalException
getPagesCount in interface WikiPageServicePortalException
public int getPagesCount(long groupId,
long userId,
long nodeId,
int status)
throws PortalException
getPagesCount in interface WikiPageServicePortalException
public String getPagesRSS(long companyId,
long nodeId,
String title,
int max,
String type,
double version,
String displayStyle,
String feedURL,
String entryURL,
String attachmentURLPrefix,
Locale locale)
throws PortalException
getPagesRSS in interface WikiPageServicePortalException
@Deprecated
public String getPagesRSS(long companyId,
long nodeId,
String title,
int max,
String type,
double version,
String displayStyle,
String feedURL,
String entryURL,
Locale locale)
throws PortalException
getPagesRSS(long, long,
String, int, String, double, String, String, String, String,
java.util.Locale)
getPagesRSS in interface WikiPageServicePortalException
public List<WikiPage> getRecentChanges(long groupId,
long nodeId,
int start,
int end)
throws PortalException
getRecentChanges in interface WikiPageServicePortalException
public int getRecentChangesCount(long groupId,
long nodeId)
throws PortalException
getRecentChangesCount in interface WikiPageServicePortalException
public String[] getTempFileNames(long nodeId,
String folderName)
throws PortalException
getTempFileNames in interface WikiPageServicePortalException
@Deprecated
public void movePage(long nodeId,
String title,
String newTitle,
ServiceContext serviceContext)
throws PortalException
renamePage(long, String,
String, ServiceContext) *
movePage in interface WikiPageServicePortalException
public FileEntry movePageAttachmentToTrash(long nodeId,
String title,
String fileName)
throws PortalException
movePageAttachmentToTrash in interface WikiPageServicePortalException
public WikiPage movePageToTrash(long nodeId,
String title)
throws PortalException
movePageToTrash in interface WikiPageServicePortalException
public WikiPage movePageToTrash(long nodeId,
String title,
double version)
throws PortalException
movePageToTrash in interface WikiPageServicePortalException
public void renamePage(long nodeId,
String title,
String newTitle,
ServiceContext serviceContext)
throws PortalException
renamePage in interface WikiPageServicePortalException
public void restorePageAttachmentFromTrash(long nodeId,
String title,
String fileName)
throws PortalException
restorePageAttachmentFromTrash in interface WikiPageServicePortalException
public void restorePageFromTrash(long resourcePrimKey)
throws PortalException
restorePageFromTrash in interface WikiPageServicePortalException
public WikiPage revertPage(long nodeId,
String title,
double version,
ServiceContext serviceContext)
throws PortalException
revertPage in interface WikiPageServicePortalExceptionpublic void setBeanIdentifier(String beanIdentifier)
setBeanIdentifier in interface WikiPageServicebeanIdentifier - the Spring bean ID for this bean
public void subscribePage(long nodeId,
String title)
throws PortalException
subscribePage in interface WikiPageServicePortalException
public void unsubscribePage(long nodeId,
String title)
throws PortalException
unsubscribePage in interface WikiPageServicePortalException
public WikiPage updatePage(long nodeId,
String title,
double version,
String content,
String summary,
boolean minorEdit,
String format,
String parentTitle,
String redirectTitle,
ServiceContext serviceContext)
throws PortalException
updatePage in interface WikiPageServicePortalException@Deprecated public WikiPageService getWrappedWikiPageService()
getWrappedService()
@Deprecated 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>
|
Liferay 7.0-ce-m3 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||