|
Liferay 6.0.4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface WikiPagePersistence
The persistence interface for the wiki page service.
Never modify this interface directly. Modify service.xml and rerun ServiceBuilder to regnerate this interface.
WikiPagePersistenceImpl,
WikiPageUtil| Method Summary | |
|---|---|
void |
cacheResult(List<WikiPage> wikiPages)
Caches the wiki pages in the entity cache if it is enabled. |
void |
cacheResult(WikiPage wikiPage)
Caches the wiki page in the entity cache if it is enabled. |
int |
countAll()
Counts all the wiki pages. |
int |
countByFormat(String format)
Counts all the wiki pages where format = ?. |
int |
countByN_H_P_S(long nodeId,
boolean head,
String parentTitle,
int status)
Counts all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status = ?. |
int |
countByN_H_P(long nodeId,
boolean head,
String parentTitle)
Counts all the wiki pages where nodeId = ? and head = ? and parentTitle = ?. |
int |
countByN_H_S(long nodeId,
boolean head,
int status)
Counts all the wiki pages where nodeId = ? and head = ? and status = ?. |
int |
countByN_H(long nodeId,
boolean head)
Counts all the wiki pages where nodeId = ? and head = ?. |
int |
countByN_P(long nodeId,
String parentTitle)
Counts all the wiki pages where nodeId = ? and parentTitle = ?. |
int |
countByN_R(long nodeId,
String redirectTitle)
Counts all the wiki pages where nodeId = ? and redirectTitle = ?. |
int |
countByN_S(long nodeId,
int status)
Counts all the wiki pages where nodeId = ? and status = ?. |
int |
countByN_T_H(long nodeId,
String title,
boolean head)
Counts all the wiki pages where nodeId = ? and title = ? and head = ?. |
int |
countByN_T_S(long nodeId,
String title,
int status)
Counts all the wiki pages where nodeId = ? and title = ? and status = ?. |
int |
countByN_T_V(long nodeId,
String title,
double version)
Counts all the wiki pages where nodeId = ? and title = ? and version = ?. |
int |
countByN_T(long nodeId,
String title)
Counts all the wiki pages where nodeId = ? and title = ?. |
int |
countByNodeId(long nodeId)
Counts all the wiki pages where nodeId = ?. |
int |
countByR_N_S(long resourcePrimKey,
long nodeId,
int status)
Counts all the wiki pages where resourcePrimKey = ? and nodeId = ? and status = ?. |
int |
countByR_N_V(long resourcePrimKey,
long nodeId,
double version)
Counts all the wiki pages where resourcePrimKey = ? and nodeId = ? and version = ?. |
int |
countByR_N(long resourcePrimKey,
long nodeId)
Counts all the wiki pages where resourcePrimKey = ? and nodeId = ?. |
int |
countByU_N_S(long userId,
long nodeId,
int status)
Counts all the wiki pages where userId = ? and nodeId = ? and status = ?. |
int |
countByUUID_G(String uuid,
long groupId)
Counts all the wiki pages where uuid = ? and groupId = ?. |
int |
countByUuid(String uuid)
Counts all the wiki pages where uuid = ?. |
WikiPage |
create(long pageId)
Creates a new wiki page with the primary key. |
WikiPage |
fetchByN_T_V(long nodeId,
String title,
double version)
Finds the wiki page where nodeId = ? and title = ? and version = ? or returns null if it could not be found. |
WikiPage |
fetchByN_T_V(long nodeId,
String title,
double version,
boolean retrieveFromCache)
Finds the wiki page where nodeId = ? and title = ? and version = ? or returns null if it could not be found, optionally using the finder cache. |
WikiPage |
fetchByPrimaryKey(long pageId)
Finds the wiki page with the primary key or returns null if it could not be found. |
WikiPage |
fetchByR_N_V(long resourcePrimKey,
long nodeId,
double version)
Finds the wiki page where resourcePrimKey = ? and nodeId = ? and version = ? or returns null if it could not be found. |
WikiPage |
fetchByR_N_V(long resourcePrimKey,
long nodeId,
double version,
boolean retrieveFromCache)
Finds the wiki page where resourcePrimKey = ? and nodeId = ? and version = ? or returns null if it could not be found, optionally using the finder cache. |
WikiPage |
fetchByUUID_G(String uuid,
long groupId)
Finds the wiki page where uuid = ? and groupId = ? or returns null if it could not be found. |
WikiPage |
fetchByUUID_G(String uuid,
long groupId,
boolean retrieveFromCache)
Finds the wiki page where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache. |
List<WikiPage> |
findAll()
Finds all the wiki pages. |
List<WikiPage> |
findAll(int start,
int end)
Finds a range of all the wiki pages. |
List<WikiPage> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the wiki pages. |
WikiPage |
findByFormat_First(String format,
OrderByComparator orderByComparator)
Finds the first wiki page in the ordered set where format = ?. |
WikiPage |
findByFormat_Last(String format,
OrderByComparator orderByComparator)
Finds the last wiki page in the ordered set where format = ?. |
WikiPage[] |
findByFormat_PrevAndNext(long pageId,
String format,
OrderByComparator orderByComparator)
Finds the wiki pages before and after the current wiki page in the ordered set where format = ?. |
List<WikiPage> |
findByFormat(String format)
Finds all the wiki pages where format = ?. |
List<WikiPage> |
findByFormat(String format,
int start,
int end)
Finds a range of all the wiki pages where format = ?. |
List<WikiPage> |
findByFormat(String format,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the wiki pages where format = ?. |
WikiPage |
findByN_H_First(long nodeId,
boolean head,
OrderByComparator orderByComparator)
Finds the first wiki page in the ordered set where nodeId = ? and head = ?. |
WikiPage |
findByN_H_Last(long nodeId,
boolean head,
OrderByComparator orderByComparator)
Finds the last wiki page in the ordered set where nodeId = ? and head = ?. |
WikiPage |
findByN_H_P_First(long nodeId,
boolean head,
String parentTitle,
OrderByComparator orderByComparator)
Finds the first wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ?. |
WikiPage |
findByN_H_P_Last(long nodeId,
boolean head,
String parentTitle,
OrderByComparator orderByComparator)
Finds the last wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ?. |
WikiPage[] |
findByN_H_P_PrevAndNext(long pageId,
long nodeId,
boolean head,
String parentTitle,
OrderByComparator orderByComparator)
Finds the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ?. |
WikiPage |
findByN_H_P_S_First(long nodeId,
boolean head,
String parentTitle,
int status,
OrderByComparator orderByComparator)
Finds the first wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status = ?. |
WikiPage |
findByN_H_P_S_Last(long nodeId,
boolean head,
String parentTitle,
int status,
OrderByComparator orderByComparator)
Finds the last wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status = ?. |
WikiPage[] |
findByN_H_P_S_PrevAndNext(long pageId,
long nodeId,
boolean head,
String parentTitle,
int status,
OrderByComparator orderByComparator)
Finds the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and parentTitle = ? and status = ?. |
List<WikiPage> |
findByN_H_P_S(long nodeId,
boolean head,
String parentTitle,
int status)
Finds all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status = ?. |
List<WikiPage> |
findByN_H_P_S(long nodeId,
boolean head,
String parentTitle,
int status,
int start,
int end)
Finds a range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status = ?. |
List<WikiPage> |
findByN_H_P_S(long nodeId,
boolean head,
String parentTitle,
int status,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status = ?. |
List<WikiPage> |
findByN_H_P(long nodeId,
boolean head,
String parentTitle)
Finds all the wiki pages where nodeId = ? and head = ? and parentTitle = ?. |
List<WikiPage> |
findByN_H_P(long nodeId,
boolean head,
String parentTitle,
int start,
int end)
Finds a range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ?. |
List<WikiPage> |
findByN_H_P(long nodeId,
boolean head,
String parentTitle,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the wiki pages where nodeId = ? and head = ? and parentTitle = ?. |
WikiPage[] |
findByN_H_PrevAndNext(long pageId,
long nodeId,
boolean head,
OrderByComparator orderByComparator)
Finds the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ?. |
WikiPage |
findByN_H_S_First(long nodeId,
boolean head,
int status,
OrderByComparator orderByComparator)
Finds the first wiki page in the ordered set where nodeId = ? and head = ? and status = ?. |
WikiPage |
findByN_H_S_Last(long nodeId,
boolean head,
int status,
OrderByComparator orderByComparator)
Finds the last wiki page in the ordered set where nodeId = ? and head = ? and status = ?. |
WikiPage[] |
findByN_H_S_PrevAndNext(long pageId,
long nodeId,
boolean head,
int status,
OrderByComparator orderByComparator)
Finds the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and head = ? and status = ?. |
List<WikiPage> |
findByN_H_S(long nodeId,
boolean head,
int status)
Finds all the wiki pages where nodeId = ? and head = ? and status = ?. |
List<WikiPage> |
findByN_H_S(long nodeId,
boolean head,
int status,
int start,
int end)
Finds a range of all the wiki pages where nodeId = ? and head = ? and status = ?. |
List<WikiPage> |
findByN_H_S(long nodeId,
boolean head,
int status,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the wiki pages where nodeId = ? and head = ? and status = ?. |
List<WikiPage> |
findByN_H(long nodeId,
boolean head)
Finds all the wiki pages where nodeId = ? and head = ?. |
List<WikiPage> |
findByN_H(long nodeId,
boolean head,
int start,
int end)
Finds a range of all the wiki pages where nodeId = ? and head = ?. |
List<WikiPage> |
findByN_H(long nodeId,
boolean head,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the wiki pages where nodeId = ? and head = ?. |
WikiPage |
findByN_P_First(long nodeId,
String parentTitle,
OrderByComparator orderByComparator)
Finds the first wiki page in the ordered set where nodeId = ? and parentTitle = ?. |
WikiPage |
findByN_P_Last(long nodeId,
String parentTitle,
OrderByComparator orderByComparator)
Finds the last wiki page in the ordered set where nodeId = ? and parentTitle = ?. |
WikiPage[] |
findByN_P_PrevAndNext(long pageId,
long nodeId,
String parentTitle,
OrderByComparator orderByComparator)
Finds the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and parentTitle = ?. |
List<WikiPage> |
findByN_P(long nodeId,
String parentTitle)
Finds all the wiki pages where nodeId = ? and parentTitle = ?. |
List<WikiPage> |
findByN_P(long nodeId,
String parentTitle,
int start,
int end)
Finds a range of all the wiki pages where nodeId = ? and parentTitle = ?. |
List<WikiPage> |
findByN_P(long nodeId,
String parentTitle,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the wiki pages where nodeId = ? and parentTitle = ?. |
WikiPage |
findByN_R_First(long nodeId,
String redirectTitle,
OrderByComparator orderByComparator)
Finds the first wiki page in the ordered set where nodeId = ? and redirectTitle = ?. |
WikiPage |
findByN_R_Last(long nodeId,
String redirectTitle,
OrderByComparator orderByComparator)
Finds the last wiki page in the ordered set where nodeId = ? and redirectTitle = ?. |
WikiPage[] |
findByN_R_PrevAndNext(long pageId,
long nodeId,
String redirectTitle,
OrderByComparator orderByComparator)
Finds the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and redirectTitle = ?. |
List<WikiPage> |
findByN_R(long nodeId,
String redirectTitle)
Finds all the wiki pages where nodeId = ? and redirectTitle = ?. |
List<WikiPage> |
findByN_R(long nodeId,
String redirectTitle,
int start,
int end)
Finds a range of all the wiki pages where nodeId = ? and redirectTitle = ?. |
List<WikiPage> |
findByN_R(long nodeId,
String redirectTitle,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the wiki pages where nodeId = ? and redirectTitle = ?. |
WikiPage |
findByN_S_First(long nodeId,
int status,
OrderByComparator orderByComparator)
Finds the first wiki page in the ordered set where nodeId = ? and status = ?. |
WikiPage |
findByN_S_Last(long nodeId,
int status,
OrderByComparator orderByComparator)
Finds the last wiki page in the ordered set where nodeId = ? and status = ?. |
WikiPage[] |
findByN_S_PrevAndNext(long pageId,
long nodeId,
int status,
OrderByComparator orderByComparator)
Finds the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and status = ?. |
List<WikiPage> |
findByN_S(long nodeId,
int status)
Finds all the wiki pages where nodeId = ? and status = ?. |
List<WikiPage> |
findByN_S(long nodeId,
int status,
int start,
int end)
Finds a range of all the wiki pages where nodeId = ? and status = ?. |
List<WikiPage> |
findByN_S(long nodeId,
int status,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the wiki pages where nodeId = ? and status = ?. |
WikiPage |
findByN_T_First(long nodeId,
String title,
OrderByComparator orderByComparator)
Finds the first wiki page in the ordered set where nodeId = ? and title = ?. |
WikiPage |
findByN_T_H_First(long nodeId,
String title,
boolean head,
OrderByComparator orderByComparator)
Finds the first wiki page in the ordered set where nodeId = ? and title = ? and head = ?. |
WikiPage |
findByN_T_H_Last(long nodeId,
String title,
boolean head,
OrderByComparator orderByComparator)
Finds the last wiki page in the ordered set where nodeId = ? and title = ? and head = ?. |
WikiPage[] |
findByN_T_H_PrevAndNext(long pageId,
long nodeId,
String title,
boolean head,
OrderByComparator orderByComparator)
Finds the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and title = ? and head = ?. |
List<WikiPage> |
findByN_T_H(long nodeId,
String title,
boolean head)
Finds all the wiki pages where nodeId = ? and title = ? and head = ?. |
List<WikiPage> |
findByN_T_H(long nodeId,
String title,
boolean head,
int start,
int end)
Finds a range of all the wiki pages where nodeId = ? and title = ? and head = ?. |
List<WikiPage> |
findByN_T_H(long nodeId,
String title,
boolean head,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the wiki pages where nodeId = ? and title = ? and head = ?. |
WikiPage |
findByN_T_Last(long nodeId,
String title,
OrderByComparator orderByComparator)
Finds the last wiki page in the ordered set where nodeId = ? and title = ?. |
WikiPage[] |
findByN_T_PrevAndNext(long pageId,
long nodeId,
String title,
OrderByComparator orderByComparator)
Finds the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and title = ?. |
WikiPage |
findByN_T_S_First(long nodeId,
String title,
int status,
OrderByComparator orderByComparator)
Finds the first wiki page in the ordered set where nodeId = ? and title = ? and status = ?. |
WikiPage |
findByN_T_S_Last(long nodeId,
String title,
int status,
OrderByComparator orderByComparator)
Finds the last wiki page in the ordered set where nodeId = ? and title = ? and status = ?. |
WikiPage[] |
findByN_T_S_PrevAndNext(long pageId,
long nodeId,
String title,
int status,
OrderByComparator orderByComparator)
Finds the wiki pages before and after the current wiki page in the ordered set where nodeId = ? and title = ? and status = ?. |
List<WikiPage> |
findByN_T_S(long nodeId,
String title,
int status)
Finds all the wiki pages where nodeId = ? and title = ? and status = ?. |
List<WikiPage> |
findByN_T_S(long nodeId,
String title,
int status,
int start,
int end)
Finds a range of all the wiki pages where nodeId = ? and title = ? and status = ?. |
List<WikiPage> |
findByN_T_S(long nodeId,
String title,
int status,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the wiki pages where nodeId = ? and title = ? and status = ?. |
WikiPage |
findByN_T_V(long nodeId,
String title,
double version)
Finds the wiki page where nodeId = ? and title = ? and version = ? or throws a NoSuchPageException if it could not be found. |
List<WikiPage> |
findByN_T(long nodeId,
String title)
Finds all the wiki pages where nodeId = ? and title = ?. |
List<WikiPage> |
findByN_T(long nodeId,
String title,
int start,
int end)
Finds a range of all the wiki pages where nodeId = ? and title = ?. |
List<WikiPage> |
findByN_T(long nodeId,
String title,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the wiki pages where nodeId = ? and title = ?. |
WikiPage |
findByNodeId_First(long nodeId,
OrderByComparator orderByComparator)
Finds the first wiki page in the ordered set where nodeId = ?. |
WikiPage |
findByNodeId_Last(long nodeId,
OrderByComparator orderByComparator)
Finds the last wiki page in the ordered set where nodeId = ?. |
WikiPage[] |
findByNodeId_PrevAndNext(long pageId,
long nodeId,
OrderByComparator orderByComparator)
Finds the wiki pages before and after the current wiki page in the ordered set where nodeId = ?. |
List<WikiPage> |
findByNodeId(long nodeId)
Finds all the wiki pages where nodeId = ?. |
List<WikiPage> |
findByNodeId(long nodeId,
int start,
int end)
Finds a range of all the wiki pages where nodeId = ?. |
List<WikiPage> |
findByNodeId(long nodeId,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the wiki pages where nodeId = ?. |
WikiPage |
findByPrimaryKey(long pageId)
Finds the wiki page with the primary key or throws a NoSuchPageException if it could not be found. |
WikiPage |
findByR_N_First(long resourcePrimKey,
long nodeId,
OrderByComparator orderByComparator)
Finds the first wiki page in the ordered set where resourcePrimKey = ? and nodeId = ?. |
WikiPage |
findByR_N_Last(long resourcePrimKey,
long nodeId,
OrderByComparator orderByComparator)
Finds the last wiki page in the ordered set where resourcePrimKey = ? and nodeId = ?. |
WikiPage[] |
findByR_N_PrevAndNext(long pageId,
long resourcePrimKey,
long nodeId,
OrderByComparator orderByComparator)
Finds the wiki pages before and after the current wiki page in the ordered set where resourcePrimKey = ? and nodeId = ?. |
WikiPage |
findByR_N_S_First(long resourcePrimKey,
long nodeId,
int status,
OrderByComparator orderByComparator)
Finds the first wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and status = ?. |
WikiPage |
findByR_N_S_Last(long resourcePrimKey,
long nodeId,
int status,
OrderByComparator orderByComparator)
Finds the last wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and status = ?. |
WikiPage[] |
findByR_N_S_PrevAndNext(long pageId,
long resourcePrimKey,
long nodeId,
int status,
OrderByComparator orderByComparator)
Finds the wiki pages before and after the current wiki page in the ordered set where resourcePrimKey = ? and nodeId = ? and status = ?. |
List<WikiPage> |
findByR_N_S(long resourcePrimKey,
long nodeId,
int status)
Finds all the wiki pages where resourcePrimKey = ? and nodeId = ? and status = ?. |
List<WikiPage> |
findByR_N_S(long resourcePrimKey,
long nodeId,
int status,
int start,
int end)
Finds a range of all the wiki pages where resourcePrimKey = ? and nodeId = ? and status = ?. |
List<WikiPage> |
findByR_N_S(long resourcePrimKey,
long nodeId,
int status,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the wiki pages where resourcePrimKey = ? and nodeId = ? and status = ?. |
WikiPage |
findByR_N_V(long resourcePrimKey,
long nodeId,
double version)
Finds the wiki page where resourcePrimKey = ? and nodeId = ? and version = ? or throws a NoSuchPageException if it could not be found. |
List<WikiPage> |
findByR_N(long resourcePrimKey,
long nodeId)
Finds all the wiki pages where resourcePrimKey = ? and nodeId = ?. |
List<WikiPage> |
findByR_N(long resourcePrimKey,
long nodeId,
int start,
int end)
Finds a range of all the wiki pages where resourcePrimKey = ? and nodeId = ?. |
List<WikiPage> |
findByR_N(long resourcePrimKey,
long nodeId,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the wiki pages where resourcePrimKey = ? and nodeId = ?. |
WikiPage |
findByU_N_S_First(long userId,
long nodeId,
int status,
OrderByComparator orderByComparator)
Finds the first wiki page in the ordered set where userId = ? and nodeId = ? and status = ?. |
WikiPage |
findByU_N_S_Last(long userId,
long nodeId,
int status,
OrderByComparator orderByComparator)
Finds the last wiki page in the ordered set where userId = ? and nodeId = ? and status = ?. |
WikiPage[] |
findByU_N_S_PrevAndNext(long pageId,
long userId,
long nodeId,
int status,
OrderByComparator orderByComparator)
Finds the wiki pages before and after the current wiki page in the ordered set where userId = ? and nodeId = ? and status = ?. |
List<WikiPage> |
findByU_N_S(long userId,
long nodeId,
int status)
Finds all the wiki pages where userId = ? and nodeId = ? and status = ?. |
List<WikiPage> |
findByU_N_S(long userId,
long nodeId,
int status,
int start,
int end)
Finds a range of all the wiki pages where userId = ? and nodeId = ? and status = ?. |
List<WikiPage> |
findByU_N_S(long userId,
long nodeId,
int status,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the wiki pages where userId = ? and nodeId = ? and status = ?. |
WikiPage |
findByUuid_First(String uuid,
OrderByComparator orderByComparator)
Finds the first wiki page in the ordered set where uuid = ?. |
WikiPage |
findByUUID_G(String uuid,
long groupId)
Finds the wiki page where uuid = ? and groupId = ? or throws a NoSuchPageException if it could not be found. |
WikiPage |
findByUuid_Last(String uuid,
OrderByComparator orderByComparator)
Finds the last wiki page in the ordered set where uuid = ?. |
WikiPage[] |
findByUuid_PrevAndNext(long pageId,
String uuid,
OrderByComparator orderByComparator)
Finds the wiki pages before and after the current wiki page in the ordered set where uuid = ?. |
List<WikiPage> |
findByUuid(String uuid)
Finds all the wiki pages where uuid = ?. |
List<WikiPage> |
findByUuid(String uuid,
int start,
int end)
Finds a range of all the wiki pages where uuid = ?. |
List<WikiPage> |
findByUuid(String uuid,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the wiki pages where uuid = ?. |
WikiPage |
remove(long pageId)
Removes the wiki page with the primary key from the database. |
void |
removeAll()
Removes all the wiki pages from the database. |
void |
removeByFormat(String format)
Removes all the wiki pages where format = ? from the database. |
void |
removeByN_H_P_S(long nodeId,
boolean head,
String parentTitle,
int status)
Removes all the wiki pages where nodeId = ? and head = ? and parentTitle = ? and status = ? from the database. |
void |
removeByN_H_P(long nodeId,
boolean head,
String parentTitle)
Removes all the wiki pages where nodeId = ? and head = ? and parentTitle = ? from the database. |
void |
removeByN_H_S(long nodeId,
boolean head,
int status)
Removes all the wiki pages where nodeId = ? and head = ? and status = ? from the database. |
void |
removeByN_H(long nodeId,
boolean head)
Removes all the wiki pages where nodeId = ? and head = ? from the database. |
void |
removeByN_P(long nodeId,
String parentTitle)
Removes all the wiki pages where nodeId = ? and parentTitle = ? from the database. |
void |
removeByN_R(long nodeId,
String redirectTitle)
Removes all the wiki pages where nodeId = ? and redirectTitle = ? from the database. |
void |
removeByN_S(long nodeId,
int status)
Removes all the wiki pages where nodeId = ? and status = ? from the database. |
void |
removeByN_T_H(long nodeId,
String title,
boolean head)
Removes all the wiki pages where nodeId = ? and title = ? and head = ? from the database. |
void |
removeByN_T_S(long nodeId,
String title,
int status)
Removes all the wiki pages where nodeId = ? and title = ? and status = ? from the database. |
void |
removeByN_T_V(long nodeId,
String title,
double version)
Removes the wiki page where nodeId = ? and title = ? and version = ? from the database. |
void |
removeByN_T(long nodeId,
String title)
Removes all the wiki pages where nodeId = ? and title = ? from the database. |
void |
removeByNodeId(long nodeId)
Removes all the wiki pages where nodeId = ? from the database. |
void |
removeByR_N_S(long resourcePrimKey,
long nodeId,
int status)
Removes all the wiki pages where resourcePrimKey = ? and nodeId = ? and status = ? from the database. |
void |
removeByR_N_V(long resourcePrimKey,
long nodeId,
double version)
Removes the wiki page where resourcePrimKey = ? and nodeId = ? and version = ? from the database. |
void |
removeByR_N(long resourcePrimKey,
long nodeId)
Removes all the wiki pages where resourcePrimKey = ? and nodeId = ? from the database. |
void |
removeByU_N_S(long userId,
long nodeId,
int status)
Removes all the wiki pages where userId = ? and nodeId = ? and status = ? from the database. |
void |
removeByUUID_G(String uuid,
long groupId)
Removes the wiki page where uuid = ? and groupId = ? from the database. |
void |
removeByUuid(String uuid)
Removes all the wiki pages where uuid = ? from the database. |
WikiPage |
updateImpl(WikiPage wikiPage,
boolean merge)
|
| Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence |
|---|
clearCache, clearCache, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, registerListener, remove, remove, setDataSource, unregisterListener, update, update |
| Method Detail |
|---|
void cacheResult(WikiPage wikiPage)
wikiPage - the wiki page to cachevoid cacheResult(List<WikiPage> wikiPages)
wikiPages - the wiki pages to cacheWikiPage create(long pageId)
pageId - the primary key for the new wiki page
WikiPage remove(long pageId)
throws SystemException,
NoSuchPageException
pageId - the primary key of the wiki page to remove
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
WikiPage updateImpl(WikiPage wikiPage,
boolean merge)
throws SystemException
SystemException
WikiPage findByPrimaryKey(long pageId)
throws SystemException,
NoSuchPageException
NoSuchPageException if it could not be found.
pageId - the primary key of the wiki page to find
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
WikiPage fetchByPrimaryKey(long pageId)
throws SystemException
null if it could not be found.
pageId - the primary key of the wiki page to find
null if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
List<WikiPage> findByUuid(String uuid)
throws SystemException
uuid - the uuid to search with
SystemException - if a system exception occurred
List<WikiPage> findByUuid(String uuid,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
uuid - the uuid to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)
SystemException - if a system exception occurred
List<WikiPage> findByUuid(String uuid,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
uuid - the uuid to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
WikiPage findByUuid_First(String uuid,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
uuid - the uuid to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage findByUuid_Last(String uuid,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
uuid - the uuid to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage[] findByUuid_PrevAndNext(long pageId,
String uuid,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
pageId - the primary key of the current wiki pageuuid - the uuid to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
WikiPage findByUUID_G(String uuid,
long groupId)
throws SystemException,
NoSuchPageException
NoSuchPageException if it could not be found.
uuid - the uuid to search withgroupId - the group id to search with
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage fetchByUUID_G(String uuid,
long groupId)
throws SystemException
null if it could not be found. Uses the finder cache.
uuid - the uuid to search withgroupId - the group id to search with
null if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage fetchByUUID_G(String uuid,
long groupId,
boolean retrieveFromCache)
throws SystemException
null if it could not be found, optionally using the finder cache.
uuid - the uuid to search withgroupId - the group id to search with
null if a matching wiki page could not be found
SystemException - if a system exception occurred
List<WikiPage> findByNodeId(long nodeId)
throws SystemException
nodeId - the node id to search with
SystemException - if a system exception occurred
List<WikiPage> findByNodeId(long nodeId,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)
SystemException - if a system exception occurred
List<WikiPage> findByNodeId(long nodeId,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
WikiPage findByNodeId_First(long nodeId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage findByNodeId_Last(long nodeId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage[] findByNodeId_PrevAndNext(long pageId,
long nodeId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
pageId - the primary key of the current wiki pagenodeId - the node id to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
List<WikiPage> findByFormat(String format)
throws SystemException
format - the format to search with
SystemException - if a system exception occurred
List<WikiPage> findByFormat(String format,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
format - the format to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)
SystemException - if a system exception occurred
List<WikiPage> findByFormat(String format,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
format - the format to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
WikiPage findByFormat_First(String format,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
format - the format to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage findByFormat_Last(String format,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
format - the format to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage[] findByFormat_PrevAndNext(long pageId,
String format,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
pageId - the primary key of the current wiki pageformat - the format to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
List<WikiPage> findByR_N(long resourcePrimKey,
long nodeId)
throws SystemException
resourcePrimKey - the resource prim key to search withnodeId - the node id to search with
SystemException - if a system exception occurred
List<WikiPage> findByR_N(long resourcePrimKey,
long nodeId,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
resourcePrimKey - the resource prim key to search withnodeId - the node id to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)
SystemException - if a system exception occurred
List<WikiPage> findByR_N(long resourcePrimKey,
long nodeId,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
resourcePrimKey - the resource prim key to search withnodeId - the node id to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
WikiPage findByR_N_First(long resourcePrimKey,
long nodeId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
resourcePrimKey - the resource prim key to search withnodeId - the node id to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage findByR_N_Last(long resourcePrimKey,
long nodeId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
resourcePrimKey - the resource prim key to search withnodeId - the node id to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage[] findByR_N_PrevAndNext(long pageId,
long resourcePrimKey,
long nodeId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
pageId - the primary key of the current wiki pageresourcePrimKey - the resource prim key to search withnodeId - the node id to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
List<WikiPage> findByN_T(long nodeId,
String title)
throws SystemException
nodeId - the node id to search withtitle - the title to search with
SystemException - if a system exception occurred
List<WikiPage> findByN_T(long nodeId,
String title,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withtitle - the title to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)
SystemException - if a system exception occurred
List<WikiPage> findByN_T(long nodeId,
String title,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withtitle - the title to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
WikiPage findByN_T_First(long nodeId,
String title,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withtitle - the title to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage findByN_T_Last(long nodeId,
String title,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withtitle - the title to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage[] findByN_T_PrevAndNext(long pageId,
long nodeId,
String title,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
pageId - the primary key of the current wiki pagenodeId - the node id to search withtitle - the title to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
List<WikiPage> findByN_H(long nodeId,
boolean head)
throws SystemException
nodeId - the node id to search withhead - the head to search with
SystemException - if a system exception occurred
List<WikiPage> findByN_H(long nodeId,
boolean head,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withhead - the head to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)
SystemException - if a system exception occurred
List<WikiPage> findByN_H(long nodeId,
boolean head,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withhead - the head to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
WikiPage findByN_H_First(long nodeId,
boolean head,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withhead - the head to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage findByN_H_Last(long nodeId,
boolean head,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withhead - the head to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage[] findByN_H_PrevAndNext(long pageId,
long nodeId,
boolean head,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
pageId - the primary key of the current wiki pagenodeId - the node id to search withhead - the head to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
List<WikiPage> findByN_P(long nodeId,
String parentTitle)
throws SystemException
nodeId - the node id to search withparentTitle - the parent title to search with
SystemException - if a system exception occurred
List<WikiPage> findByN_P(long nodeId,
String parentTitle,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withparentTitle - the parent title to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)
SystemException - if a system exception occurred
List<WikiPage> findByN_P(long nodeId,
String parentTitle,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withparentTitle - the parent title to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
WikiPage findByN_P_First(long nodeId,
String parentTitle,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withparentTitle - the parent title to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage findByN_P_Last(long nodeId,
String parentTitle,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withparentTitle - the parent title to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage[] findByN_P_PrevAndNext(long pageId,
long nodeId,
String parentTitle,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
pageId - the primary key of the current wiki pagenodeId - the node id to search withparentTitle - the parent title to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
List<WikiPage> findByN_R(long nodeId,
String redirectTitle)
throws SystemException
nodeId - the node id to search withredirectTitle - the redirect title to search with
SystemException - if a system exception occurred
List<WikiPage> findByN_R(long nodeId,
String redirectTitle,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withredirectTitle - the redirect title to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)
SystemException - if a system exception occurred
List<WikiPage> findByN_R(long nodeId,
String redirectTitle,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withredirectTitle - the redirect title to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
WikiPage findByN_R_First(long nodeId,
String redirectTitle,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withredirectTitle - the redirect title to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage findByN_R_Last(long nodeId,
String redirectTitle,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withredirectTitle - the redirect title to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage[] findByN_R_PrevAndNext(long pageId,
long nodeId,
String redirectTitle,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
pageId - the primary key of the current wiki pagenodeId - the node id to search withredirectTitle - the redirect title to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
List<WikiPage> findByN_S(long nodeId,
int status)
throws SystemException
nodeId - the node id to search withstatus - the status to search with
SystemException - if a system exception occurred
List<WikiPage> findByN_S(long nodeId,
int status,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withstatus - the status to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)
SystemException - if a system exception occurred
List<WikiPage> findByN_S(long nodeId,
int status,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withstatus - the status to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
WikiPage findByN_S_First(long nodeId,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage findByN_S_Last(long nodeId,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage[] findByN_S_PrevAndNext(long pageId,
long nodeId,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
pageId - the primary key of the current wiki pagenodeId - the node id to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
WikiPage findByR_N_V(long resourcePrimKey,
long nodeId,
double version)
throws SystemException,
NoSuchPageException
NoSuchPageException if it could not be found.
resourcePrimKey - the resource prim key to search withnodeId - the node id to search withversion - the version to search with
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage fetchByR_N_V(long resourcePrimKey,
long nodeId,
double version)
throws SystemException
null if it could not be found. Uses the finder cache.
resourcePrimKey - the resource prim key to search withnodeId - the node id to search withversion - the version to search with
null if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage fetchByR_N_V(long resourcePrimKey,
long nodeId,
double version,
boolean retrieveFromCache)
throws SystemException
null if it could not be found, optionally using the finder cache.
resourcePrimKey - the resource prim key to search withnodeId - the node id to search withversion - the version to search with
null if a matching wiki page could not be found
SystemException - if a system exception occurred
List<WikiPage> findByR_N_S(long resourcePrimKey,
long nodeId,
int status)
throws SystemException
resourcePrimKey - the resource prim key to search withnodeId - the node id to search withstatus - the status to search with
SystemException - if a system exception occurred
List<WikiPage> findByR_N_S(long resourcePrimKey,
long nodeId,
int status,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
resourcePrimKey - the resource prim key to search withnodeId - the node id to search withstatus - the status to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)
SystemException - if a system exception occurred
List<WikiPage> findByR_N_S(long resourcePrimKey,
long nodeId,
int status,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
resourcePrimKey - the resource prim key to search withnodeId - the node id to search withstatus - the status to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
WikiPage findByR_N_S_First(long resourcePrimKey,
long nodeId,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
resourcePrimKey - the resource prim key to search withnodeId - the node id to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage findByR_N_S_Last(long resourcePrimKey,
long nodeId,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
resourcePrimKey - the resource prim key to search withnodeId - the node id to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage[] findByR_N_S_PrevAndNext(long pageId,
long resourcePrimKey,
long nodeId,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
pageId - the primary key of the current wiki pageresourcePrimKey - the resource prim key to search withnodeId - the node id to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
List<WikiPage> findByU_N_S(long userId,
long nodeId,
int status)
throws SystemException
userId - the user id to search withnodeId - the node id to search withstatus - the status to search with
SystemException - if a system exception occurred
List<WikiPage> findByU_N_S(long userId,
long nodeId,
int status,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
userId - the user id to search withnodeId - the node id to search withstatus - the status to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)
SystemException - if a system exception occurred
List<WikiPage> findByU_N_S(long userId,
long nodeId,
int status,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
userId - the user id to search withnodeId - the node id to search withstatus - the status to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
WikiPage findByU_N_S_First(long userId,
long nodeId,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
userId - the user id to search withnodeId - the node id to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage findByU_N_S_Last(long userId,
long nodeId,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
userId - the user id to search withnodeId - the node id to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage[] findByU_N_S_PrevAndNext(long pageId,
long userId,
long nodeId,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
pageId - the primary key of the current wiki pageuserId - the user id to search withnodeId - the node id to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
WikiPage findByN_T_V(long nodeId,
String title,
double version)
throws SystemException,
NoSuchPageException
NoSuchPageException if it could not be found.
nodeId - the node id to search withtitle - the title to search withversion - the version to search with
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage fetchByN_T_V(long nodeId,
String title,
double version)
throws SystemException
null if it could not be found. Uses the finder cache.
nodeId - the node id to search withtitle - the title to search withversion - the version to search with
null if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage fetchByN_T_V(long nodeId,
String title,
double version,
boolean retrieveFromCache)
throws SystemException
null if it could not be found, optionally using the finder cache.
nodeId - the node id to search withtitle - the title to search withversion - the version to search with
null if a matching wiki page could not be found
SystemException - if a system exception occurred
List<WikiPage> findByN_T_H(long nodeId,
String title,
boolean head)
throws SystemException
nodeId - the node id to search withtitle - the title to search withhead - the head to search with
SystemException - if a system exception occurred
List<WikiPage> findByN_T_H(long nodeId,
String title,
boolean head,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withtitle - the title to search withhead - the head to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)
SystemException - if a system exception occurred
List<WikiPage> findByN_T_H(long nodeId,
String title,
boolean head,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withtitle - the title to search withhead - the head to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
WikiPage findByN_T_H_First(long nodeId,
String title,
boolean head,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withtitle - the title to search withhead - the head to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage findByN_T_H_Last(long nodeId,
String title,
boolean head,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withtitle - the title to search withhead - the head to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage[] findByN_T_H_PrevAndNext(long pageId,
long nodeId,
String title,
boolean head,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
pageId - the primary key of the current wiki pagenodeId - the node id to search withtitle - the title to search withhead - the head to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
List<WikiPage> findByN_T_S(long nodeId,
String title,
int status)
throws SystemException
nodeId - the node id to search withtitle - the title to search withstatus - the status to search with
SystemException - if a system exception occurred
List<WikiPage> findByN_T_S(long nodeId,
String title,
int status,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withtitle - the title to search withstatus - the status to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)
SystemException - if a system exception occurred
List<WikiPage> findByN_T_S(long nodeId,
String title,
int status,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withtitle - the title to search withstatus - the status to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
WikiPage findByN_T_S_First(long nodeId,
String title,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withtitle - the title to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage findByN_T_S_Last(long nodeId,
String title,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withtitle - the title to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage[] findByN_T_S_PrevAndNext(long pageId,
long nodeId,
String title,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
pageId - the primary key of the current wiki pagenodeId - the node id to search withtitle - the title to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
List<WikiPage> findByN_H_P(long nodeId,
boolean head,
String parentTitle)
throws SystemException
nodeId - the node id to search withhead - the head to search withparentTitle - the parent title to search with
SystemException - if a system exception occurred
List<WikiPage> findByN_H_P(long nodeId,
boolean head,
String parentTitle,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withhead - the head to search withparentTitle - the parent title to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)
SystemException - if a system exception occurred
List<WikiPage> findByN_H_P(long nodeId,
boolean head,
String parentTitle,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withhead - the head to search withparentTitle - the parent title to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
WikiPage findByN_H_P_First(long nodeId,
boolean head,
String parentTitle,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withhead - the head to search withparentTitle - the parent title to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage findByN_H_P_Last(long nodeId,
boolean head,
String parentTitle,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withhead - the head to search withparentTitle - the parent title to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage[] findByN_H_P_PrevAndNext(long pageId,
long nodeId,
boolean head,
String parentTitle,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
pageId - the primary key of the current wiki pagenodeId - the node id to search withhead - the head to search withparentTitle - the parent title to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
List<WikiPage> findByN_H_S(long nodeId,
boolean head,
int status)
throws SystemException
nodeId - the node id to search withhead - the head to search withstatus - the status to search with
SystemException - if a system exception occurred
List<WikiPage> findByN_H_S(long nodeId,
boolean head,
int status,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withhead - the head to search withstatus - the status to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)
SystemException - if a system exception occurred
List<WikiPage> findByN_H_S(long nodeId,
boolean head,
int status,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withhead - the head to search withstatus - the status to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
WikiPage findByN_H_S_First(long nodeId,
boolean head,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withhead - the head to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage findByN_H_S_Last(long nodeId,
boolean head,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withhead - the head to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage[] findByN_H_S_PrevAndNext(long pageId,
long nodeId,
boolean head,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
pageId - the primary key of the current wiki pagenodeId - the node id to search withhead - the head to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
List<WikiPage> findByN_H_P_S(long nodeId,
boolean head,
String parentTitle,
int status)
throws SystemException
nodeId - the node id to search withhead - the head to search withparentTitle - the parent title to search withstatus - the status to search with
SystemException - if a system exception occurred
List<WikiPage> findByN_H_P_S(long nodeId,
boolean head,
String parentTitle,
int status,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withhead - the head to search withparentTitle - the parent title to search withstatus - the status to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)
SystemException - if a system exception occurred
List<WikiPage> findByN_H_P_S(long nodeId,
boolean head,
String parentTitle,
int status,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withhead - the head to search withparentTitle - the parent title to search withstatus - the status to search withstart - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
WikiPage findByN_H_P_S_First(long nodeId,
boolean head,
String parentTitle,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withhead - the head to search withparentTitle - the parent title to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage findByN_H_P_S_Last(long nodeId,
boolean head,
String parentTitle,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
nodeId - the node id to search withhead - the head to search withparentTitle - the parent title to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a matching wiki page could not be found
SystemException - if a system exception occurred
WikiPage[] findByN_H_P_S_PrevAndNext(long pageId,
long nodeId,
boolean head,
String parentTitle,
int status,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchPageException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
pageId - the primary key of the current wiki pagenodeId - the node id to search withhead - the head to search withparentTitle - the parent title to search withstatus - the status to search withorderByComparator - the comparator to order the set by
NoSuchPageException - if a wiki page with the primary key could not be found
SystemException - if a system exception occurred
List<WikiPage> findAll()
throws SystemException
SystemException - if a system exception occurred
List<WikiPage> findAll(int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
start - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)
SystemException - if a system exception occurred
List<WikiPage> findAll(int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
start - the lower bound of the range of wiki pages to returnend - the upper bound of the range of wiki pages to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
void removeByUuid(String uuid)
throws SystemException
uuid - the uuid to search with
SystemException - if a system exception occurred
void removeByUUID_G(String uuid,
long groupId)
throws SystemException,
NoSuchPageException
uuid - the uuid to search withgroupId - the group id to search with
SystemException - if a system exception occurred
NoSuchPageException
void removeByNodeId(long nodeId)
throws SystemException
nodeId - the node id to search with
SystemException - if a system exception occurred
void removeByFormat(String format)
throws SystemException
format - the format to search with
SystemException - if a system exception occurred
void removeByR_N(long resourcePrimKey,
long nodeId)
throws SystemException
resourcePrimKey - the resource prim key to search withnodeId - the node id to search with
SystemException - if a system exception occurred
void removeByN_T(long nodeId,
String title)
throws SystemException
nodeId - the node id to search withtitle - the title to search with
SystemException - if a system exception occurred
void removeByN_H(long nodeId,
boolean head)
throws SystemException
nodeId - the node id to search withhead - the head to search with
SystemException - if a system exception occurred
void removeByN_P(long nodeId,
String parentTitle)
throws SystemException
nodeId - the node id to search withparentTitle - the parent title to search with
SystemException - if a system exception occurred
void removeByN_R(long nodeId,
String redirectTitle)
throws SystemException
nodeId - the node id to search withredirectTitle - the redirect title to search with
SystemException - if a system exception occurred
void removeByN_S(long nodeId,
int status)
throws SystemException
nodeId - the node id to search withstatus - the status to search with
SystemException - if a system exception occurred
void removeByR_N_V(long resourcePrimKey,
long nodeId,
double version)
throws SystemException,
NoSuchPageException
resourcePrimKey - the resource prim key to search withnodeId - the node id to search withversion - the version to search with
SystemException - if a system exception occurred
NoSuchPageException
void removeByR_N_S(long resourcePrimKey,
long nodeId,
int status)
throws SystemException
resourcePrimKey - the resource prim key to search withnodeId - the node id to search withstatus - the status to search with
SystemException - if a system exception occurred
void removeByU_N_S(long userId,
long nodeId,
int status)
throws SystemException
userId - the user id to search withnodeId - the node id to search withstatus - the status to search with
SystemException - if a system exception occurred
void removeByN_T_V(long nodeId,
String title,
double version)
throws SystemException,
NoSuchPageException
nodeId - the node id to search withtitle - the title to search withversion - the version to search with
SystemException - if a system exception occurred
NoSuchPageException
void removeByN_T_H(long nodeId,
String title,
boolean head)
throws SystemException
nodeId - the node id to search withtitle - the title to search withhead - the head to search with
SystemException - if a system exception occurred
void removeByN_T_S(long nodeId,
String title,
int status)
throws SystemException
nodeId - the node id to search withtitle - the title to search withstatus - the status to search with
SystemException - if a system exception occurred
void removeByN_H_P(long nodeId,
boolean head,
String parentTitle)
throws SystemException
nodeId - the node id to search withhead - the head to search withparentTitle - the parent title to search with
SystemException - if a system exception occurred
void removeByN_H_S(long nodeId,
boolean head,
int status)
throws SystemException
nodeId - the node id to search withhead - the head to search withstatus - the status to search with
SystemException - if a system exception occurred
void removeByN_H_P_S(long nodeId,
boolean head,
String parentTitle,
int status)
throws SystemException
nodeId - the node id to search withhead - the head to search withparentTitle - the parent title to search withstatus - the status to search with
SystemException - if a system exception occurred
void removeAll()
throws SystemException
SystemException - if a system exception occurred
int countByUuid(String uuid)
throws SystemException
uuid - the uuid to search with
SystemException - if a system exception occurred
int countByUUID_G(String uuid,
long groupId)
throws SystemException
uuid - the uuid to search withgroupId - the group id to search with
SystemException - if a system exception occurred
int countByNodeId(long nodeId)
throws SystemException
nodeId - the node id to search with
SystemException - if a system exception occurred
int countByFormat(String format)
throws SystemException
format - the format to search with
SystemException - if a system exception occurred
int countByR_N(long resourcePrimKey,
long nodeId)
throws SystemException
resourcePrimKey - the resource prim key to search withnodeId - the node id to search with
SystemException - if a system exception occurred
int countByN_T(long nodeId,
String title)
throws SystemException
nodeId - the node id to search withtitle - the title to search with
SystemException - if a system exception occurred
int countByN_H(long nodeId,
boolean head)
throws SystemException
nodeId - the node id to search withhead - the head to search with
SystemException - if a system exception occurred
int countByN_P(long nodeId,
String parentTitle)
throws SystemException
nodeId - the node id to search withparentTitle - the parent title to search with
SystemException - if a system exception occurred
int countByN_R(long nodeId,
String redirectTitle)
throws SystemException
nodeId - the node id to search withredirectTitle - the redirect title to search with
SystemException - if a system exception occurred
int countByN_S(long nodeId,
int status)
throws SystemException
nodeId - the node id to search withstatus - the status to search with
SystemException - if a system exception occurred
int countByR_N_V(long resourcePrimKey,
long nodeId,
double version)
throws SystemException
resourcePrimKey - the resource prim key to search withnodeId - the node id to search withversion - the version to search with
SystemException - if a system exception occurred
int countByR_N_S(long resourcePrimKey,
long nodeId,
int status)
throws SystemException
resourcePrimKey - the resource prim key to search withnodeId - the node id to search withstatus - the status to search with
SystemException - if a system exception occurred
int countByU_N_S(long userId,
long nodeId,
int status)
throws SystemException
userId - the user id to search withnodeId - the node id to search withstatus - the status to search with
SystemException - if a system exception occurred
int countByN_T_V(long nodeId,
String title,
double version)
throws SystemException
nodeId - the node id to search withtitle - the title to search withversion - the version to search with
SystemException - if a system exception occurred
int countByN_T_H(long nodeId,
String title,
boolean head)
throws SystemException
nodeId - the node id to search withtitle - the title to search withhead - the head to search with
SystemException - if a system exception occurred
int countByN_T_S(long nodeId,
String title,
int status)
throws SystemException
nodeId - the node id to search withtitle - the title to search withstatus - the status to search with
SystemException - if a system exception occurred
int countByN_H_P(long nodeId,
boolean head,
String parentTitle)
throws SystemException
nodeId - the node id to search withhead - the head to search withparentTitle - the parent title to search with
SystemException - if a system exception occurred
int countByN_H_S(long nodeId,
boolean head,
int status)
throws SystemException
nodeId - the node id to search withhead - the head to search withstatus - the status to search with
SystemException - if a system exception occurred
int countByN_H_P_S(long nodeId,
boolean head,
String parentTitle,
int status)
throws SystemException
nodeId - the node id to search withhead - the head to search withparentTitle - the parent title to search withstatus - the status to search with
SystemException - if a system exception occurred
int countAll()
throws SystemException
SystemException - if a system exception occurred
|
Liferay 6.0.4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||