001
014
015 package com.liferay.portlet.wiki.model;
016
017 import com.liferay.portal.model.PersistedModel;
018
019
028 public interface WikiPage extends WikiPageModel, PersistedModel {
029
034 public java.util.List<com.liferay.portal.kernel.repository.model.FileEntry> getAttachmentsFileEntries()
035 throws com.liferay.portal.kernel.exception.PortalException,
036 com.liferay.portal.kernel.exception.SystemException;
037
038 public java.util.List<com.liferay.portal.kernel.repository.model.FileEntry> getAttachmentsFileEntries(
039 int start, int end)
040 throws com.liferay.portal.kernel.exception.PortalException,
041 com.liferay.portal.kernel.exception.SystemException;
042
043 public int getAttachmentsFileEntriesCount()
044 throws com.liferay.portal.kernel.exception.PortalException,
045 com.liferay.portal.kernel.exception.SystemException;
046
047 public long getAttachmentsFolderId()
048 throws com.liferay.portal.kernel.exception.PortalException,
049 com.liferay.portal.kernel.exception.SystemException;
050
051 public long getNodeAttachmentsFolderId()
052 throws com.liferay.portal.kernel.exception.PortalException,
053 com.liferay.portal.kernel.exception.SystemException;
054
055 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getChildPages();
056
057 public java.util.List<com.liferay.portal.kernel.repository.model.FileEntry> getDeletedAttachmentsFileEntries()
058 throws com.liferay.portal.kernel.exception.PortalException,
059 com.liferay.portal.kernel.exception.SystemException;
060
061 public java.util.List<com.liferay.portal.kernel.repository.model.FileEntry> getDeletedAttachmentsFileEntries(
062 int start, int end)
063 throws com.liferay.portal.kernel.exception.PortalException,
064 com.liferay.portal.kernel.exception.SystemException;
065
066 public int getDeletedAttachmentsFileEntriesCount()
067 throws com.liferay.portal.kernel.exception.PortalException,
068 com.liferay.portal.kernel.exception.SystemException;
069
070 public com.liferay.portlet.wiki.model.WikiNode getNode();
071
072 public com.liferay.portlet.wiki.model.WikiPage getParentPage();
073
074 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getParentPages();
075
076 public com.liferay.portlet.wiki.model.WikiPage getRedirectPage();
077
078 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getViewableChildPages();
079
080 public com.liferay.portlet.wiki.model.WikiPage getViewableParentPage();
081
082 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getViewableParentPages();
083
084 public boolean isInTrashContainer();
085
086 public boolean isResourceMain();
087
088 public void setAttachmentsFolderId(long attachmentsFolderId);
089 }