Liferay 6.0.5

com.liferay.portlet.wiki.service.persistence
Interface WikiNodePersistence

All Superinterfaces:
BasePersistence<WikiNode>
All Known Implementing Classes:
WikiNodePersistenceImpl

public interface WikiNodePersistence
extends BasePersistence<WikiNode>

The persistence interface for the wiki node service.

Never modify or reference this interface directly. Always use WikiNodeUtil to access the wiki node persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface.

Caching information and settings can be found in portal.properties

See Also:
WikiNodePersistenceImpl, WikiNodeUtil
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Method Summary
 void cacheResult(List<WikiNode> wikiNodes)
          Caches the wiki nodes in the entity cache if it is enabled.
 void cacheResult(WikiNode wikiNode)
          Caches the wiki node in the entity cache if it is enabled.
 int countAll()
          Counts all the wiki nodes.
 int countByCompanyId(long companyId)
          Counts all the wiki nodes where companyId = ?.
 int countByG_N(long groupId, String name)
          Counts all the wiki nodes where groupId = ? and name = ?.
 int countByGroupId(long groupId)
          Counts all the wiki nodes where groupId = ?.
 int countByUUID_G(String uuid, long groupId)
          Counts all the wiki nodes where uuid = ? and groupId = ?.
 int countByUuid(String uuid)
          Counts all the wiki nodes where uuid = ?.
 WikiNode create(long nodeId)
          Creates a new wiki node with the primary key.
 WikiNode fetchByG_N(long groupId, String name)
          Finds the wiki node where groupId = ? and name = ? or returns null if it could not be found.
 WikiNode fetchByG_N(long groupId, String name, boolean retrieveFromCache)
          Finds the wiki node where groupId = ? and name = ? or returns null if it could not be found, optionally using the finder cache.
 WikiNode fetchByPrimaryKey(long nodeId)
          Finds the wiki node with the primary key or returns null if it could not be found.
 WikiNode fetchByUUID_G(String uuid, long groupId)
          Finds the wiki node where uuid = ? and groupId = ? or returns null if it could not be found.
 WikiNode fetchByUUID_G(String uuid, long groupId, boolean retrieveFromCache)
          Finds the wiki node where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
 int filterCountByG_N(long groupId, String name)
          Filters by the user's permissions and counts all the wiki nodes where groupId = ? and name = ?.
 int filterCountByGroupId(long groupId)
          Filters by the user's permissions and counts all the wiki nodes where groupId = ?.
 List<WikiNode> filterFindByGroupId(long groupId)
          Filters by the user's permissions and finds all the wiki nodes where groupId = ?.
 List<WikiNode> filterFindByGroupId(long groupId, int start, int end)
          Filters by the user's permissions and finds a range of all the wiki nodes where groupId = ?.
 List<WikiNode> filterFindByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the wiki nodes where groupId = ?.
 List<WikiNode> findAll()
          Finds all the wiki nodes.
 List<WikiNode> findAll(int start, int end)
          Finds a range of all the wiki nodes.
 List<WikiNode> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the wiki nodes.
 WikiNode findByCompanyId_First(long companyId, OrderByComparator orderByComparator)
          Finds the first wiki node in the ordered set where companyId = ?.
 WikiNode findByCompanyId_Last(long companyId, OrderByComparator orderByComparator)
          Finds the last wiki node in the ordered set where companyId = ?.
 WikiNode[] findByCompanyId_PrevAndNext(long nodeId, long companyId, OrderByComparator orderByComparator)
          Finds the wiki nodes before and after the current wiki node in the ordered set where companyId = ?.
 List<WikiNode> findByCompanyId(long companyId)
          Finds all the wiki nodes where companyId = ?.
 List<WikiNode> findByCompanyId(long companyId, int start, int end)
          Finds a range of all the wiki nodes where companyId = ?.
 List<WikiNode> findByCompanyId(long companyId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the wiki nodes where companyId = ?.
 WikiNode findByG_N(long groupId, String name)
          Finds the wiki node where groupId = ? and name = ? or throws a NoSuchNodeException if it could not be found.
 WikiNode findByGroupId_First(long groupId, OrderByComparator orderByComparator)
          Finds the first wiki node in the ordered set where groupId = ?.
 WikiNode findByGroupId_Last(long groupId, OrderByComparator orderByComparator)
          Finds the last wiki node in the ordered set where groupId = ?.
 WikiNode[] findByGroupId_PrevAndNext(long nodeId, long groupId, OrderByComparator orderByComparator)
          Finds the wiki nodes before and after the current wiki node in the ordered set where groupId = ?.
 List<WikiNode> findByGroupId(long groupId)
          Finds all the wiki nodes where groupId = ?.
 List<WikiNode> findByGroupId(long groupId, int start, int end)
          Finds a range of all the wiki nodes where groupId = ?.
 List<WikiNode> findByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the wiki nodes where groupId = ?.
 WikiNode findByPrimaryKey(long nodeId)
          Finds the wiki node with the primary key or throws a NoSuchNodeException if it could not be found.
 WikiNode findByUuid_First(String uuid, OrderByComparator orderByComparator)
          Finds the first wiki node in the ordered set where uuid = ?.
 WikiNode findByUUID_G(String uuid, long groupId)
          Finds the wiki node where uuid = ? and groupId = ? or throws a NoSuchNodeException if it could not be found.
 WikiNode findByUuid_Last(String uuid, OrderByComparator orderByComparator)
          Finds the last wiki node in the ordered set where uuid = ?.
 WikiNode[] findByUuid_PrevAndNext(long nodeId, String uuid, OrderByComparator orderByComparator)
          Finds the wiki nodes before and after the current wiki node in the ordered set where uuid = ?.
 List<WikiNode> findByUuid(String uuid)
          Finds all the wiki nodes where uuid = ?.
 List<WikiNode> findByUuid(String uuid, int start, int end)
          Finds a range of all the wiki nodes where uuid = ?.
 List<WikiNode> findByUuid(String uuid, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the wiki nodes where uuid = ?.
 WikiNode remove(long nodeId)
          Removes the wiki node with the primary key from the database.
 void removeAll()
          Removes all the wiki nodes from the database.
 void removeByCompanyId(long companyId)
          Removes all the wiki nodes where companyId = ? from the database.
 void removeByG_N(long groupId, String name)
          Removes the wiki node where groupId = ? and name = ? from the database.
 void removeByGroupId(long groupId)
          Removes all the wiki nodes where groupId = ? from the database.
 void removeByUUID_G(String uuid, long groupId)
          Removes the wiki node where uuid = ? and groupId = ? from the database.
 void removeByUuid(String uuid)
          Removes all the wiki nodes where uuid = ? from the database.
 WikiNode updateImpl(WikiNode wikiNode, 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

cacheResult

void cacheResult(WikiNode wikiNode)
Caches the wiki node in the entity cache if it is enabled.

Parameters:
wikiNode - the wiki node to cache

cacheResult

void cacheResult(List<WikiNode> wikiNodes)
Caches the wiki nodes in the entity cache if it is enabled.

Parameters:
wikiNodes - the wiki nodes to cache

create

WikiNode create(long nodeId)
Creates a new wiki node with the primary key. Does not add the wiki node to the database.

Parameters:
nodeId - the primary key for the new wiki node
Returns:
the new wiki node

remove

WikiNode remove(long nodeId)
                throws SystemException,
                       NoSuchNodeException
Removes the wiki node with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
nodeId - the primary key of the wiki node to remove
Returns:
the wiki node that was removed
Throws:
NoSuchNodeException - if a wiki node with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

WikiNode updateImpl(WikiNode wikiNode,
                    boolean merge)
                    throws SystemException
Throws:
SystemException

findByPrimaryKey

WikiNode findByPrimaryKey(long nodeId)
                          throws SystemException,
                                 NoSuchNodeException
Finds the wiki node with the primary key or throws a NoSuchNodeException if it could not be found.

Parameters:
nodeId - the primary key of the wiki node to find
Returns:
the wiki node
Throws:
NoSuchNodeException - if a wiki node with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

WikiNode fetchByPrimaryKey(long nodeId)
                           throws SystemException
Finds the wiki node with the primary key or returns null if it could not be found.

Parameters:
nodeId - the primary key of the wiki node to find
Returns:
the wiki node, or null if a wiki node with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByUuid

List<WikiNode> findByUuid(String uuid)
                          throws SystemException
Finds all the wiki nodes where uuid = ?.

Parameters:
uuid - the uuid to search with
Returns:
the matching wiki nodes
Throws:
SystemException - if a system exception occurred

findByUuid

List<WikiNode> findByUuid(String uuid,
                          int start,
                          int end)
                          throws SystemException
Finds a range of all the wiki nodes where uuid = ?.

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.

Parameters:
uuid - the uuid to search with
start - the lower bound of the range of wiki nodes to return
end - the upper bound of the range of wiki nodes to return (not inclusive)
Returns:
the range of matching wiki nodes
Throws:
SystemException - if a system exception occurred

findByUuid

List<WikiNode> findByUuid(String uuid,
                          int start,
                          int end,
                          OrderByComparator orderByComparator)
                          throws SystemException
Finds an ordered range of all the wiki nodes where uuid = ?.

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.

Parameters:
uuid - the uuid to search with
start - the lower bound of the range of wiki nodes to return
end - the upper bound of the range of wiki nodes to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching wiki nodes
Throws:
SystemException - if a system exception occurred

findByUuid_First

WikiNode findByUuid_First(String uuid,
                          OrderByComparator orderByComparator)
                          throws SystemException,
                                 NoSuchNodeException
Finds the first wiki node in the ordered set where uuid = ?.

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.

Parameters:
uuid - the uuid to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching wiki node
Throws:
NoSuchNodeException - if a matching wiki node could not be found
SystemException - if a system exception occurred

findByUuid_Last

WikiNode findByUuid_Last(String uuid,
                         OrderByComparator orderByComparator)
                         throws SystemException,
                                NoSuchNodeException
Finds the last wiki node in the ordered set where uuid = ?.

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.

Parameters:
uuid - the uuid to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching wiki node
Throws:
NoSuchNodeException - if a matching wiki node could not be found
SystemException - if a system exception occurred

findByUuid_PrevAndNext

WikiNode[] findByUuid_PrevAndNext(long nodeId,
                                  String uuid,
                                  OrderByComparator orderByComparator)
                                  throws SystemException,
                                         NoSuchNodeException
Finds the wiki nodes before and after the current wiki node in the ordered set where uuid = ?.

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.

Parameters:
nodeId - the primary key of the current wiki node
uuid - the uuid to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next wiki node
Throws:
NoSuchNodeException - if a wiki node with the primary key could not be found
SystemException - if a system exception occurred

findByUUID_G

WikiNode findByUUID_G(String uuid,
                      long groupId)
                      throws SystemException,
                             NoSuchNodeException
Finds the wiki node where uuid = ? and groupId = ? or throws a NoSuchNodeException if it could not be found.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Returns:
the matching wiki node
Throws:
NoSuchNodeException - if a matching wiki node could not be found
SystemException - if a system exception occurred

fetchByUUID_G

WikiNode fetchByUUID_G(String uuid,
                       long groupId)
                       throws SystemException
Finds the wiki node where uuid = ? and groupId = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Returns:
the matching wiki node, or null if a matching wiki node could not be found
Throws:
SystemException - if a system exception occurred

fetchByUUID_G

WikiNode fetchByUUID_G(String uuid,
                       long groupId,
                       boolean retrieveFromCache)
                       throws SystemException
Finds the wiki node where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Returns:
the matching wiki node, or null if a matching wiki node could not be found
Throws:
SystemException - if a system exception occurred

findByGroupId

List<WikiNode> findByGroupId(long groupId)
                             throws SystemException
Finds all the wiki nodes where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the matching wiki nodes
Throws:
SystemException - if a system exception occurred

findByGroupId

List<WikiNode> findByGroupId(long groupId,
                             int start,
                             int end)
                             throws SystemException
Finds a range of all the wiki nodes where groupId = ?.

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.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of wiki nodes to return
end - the upper bound of the range of wiki nodes to return (not inclusive)
Returns:
the range of matching wiki nodes
Throws:
SystemException - if a system exception occurred

findByGroupId

List<WikiNode> findByGroupId(long groupId,
                             int start,
                             int end,
                             OrderByComparator orderByComparator)
                             throws SystemException
Finds an ordered range of all the wiki nodes where groupId = ?.

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.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of wiki nodes to return
end - the upper bound of the range of wiki nodes to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching wiki nodes
Throws:
SystemException - if a system exception occurred

findByGroupId_First

WikiNode findByGroupId_First(long groupId,
                             OrderByComparator orderByComparator)
                             throws SystemException,
                                    NoSuchNodeException
Finds the first wiki node in the ordered set where groupId = ?.

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.

Parameters:
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching wiki node
Throws:
NoSuchNodeException - if a matching wiki node could not be found
SystemException - if a system exception occurred

findByGroupId_Last

WikiNode findByGroupId_Last(long groupId,
                            OrderByComparator orderByComparator)
                            throws SystemException,
                                   NoSuchNodeException
Finds the last wiki node in the ordered set where groupId = ?.

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.

Parameters:
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching wiki node
Throws:
NoSuchNodeException - if a matching wiki node could not be found
SystemException - if a system exception occurred

findByGroupId_PrevAndNext

WikiNode[] findByGroupId_PrevAndNext(long nodeId,
                                     long groupId,
                                     OrderByComparator orderByComparator)
                                     throws SystemException,
                                            NoSuchNodeException
Finds the wiki nodes before and after the current wiki node in the ordered set where groupId = ?.

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.

Parameters:
nodeId - the primary key of the current wiki node
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next wiki node
Throws:
NoSuchNodeException - if a wiki node with the primary key could not be found
SystemException - if a system exception occurred

filterFindByGroupId

List<WikiNode> filterFindByGroupId(long groupId)
                                   throws SystemException
Filters by the user's permissions and finds all the wiki nodes where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the matching wiki nodes that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByGroupId

List<WikiNode> filterFindByGroupId(long groupId,
                                   int start,
                                   int end)
                                   throws SystemException
Filters by the user's permissions and finds a range of all the wiki nodes where groupId = ?.

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.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of wiki nodes to return
end - the upper bound of the range of wiki nodes to return (not inclusive)
Returns:
the range of matching wiki nodes that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByGroupId

List<WikiNode> filterFindByGroupId(long groupId,
                                   int start,
                                   int end,
                                   OrderByComparator orderByComparator)
                                   throws SystemException
Filters by the user's permissions and finds an ordered range of all the wiki nodes where groupId = ?.

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.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of wiki nodes to return
end - the upper bound of the range of wiki nodes to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching wiki nodes that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByCompanyId

List<WikiNode> findByCompanyId(long companyId)
                               throws SystemException
Finds all the wiki nodes where companyId = ?.

Parameters:
companyId - the company id to search with
Returns:
the matching wiki nodes
Throws:
SystemException - if a system exception occurred

findByCompanyId

List<WikiNode> findByCompanyId(long companyId,
                               int start,
                               int end)
                               throws SystemException
Finds a range of all the wiki nodes where companyId = ?.

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.

Parameters:
companyId - the company id to search with
start - the lower bound of the range of wiki nodes to return
end - the upper bound of the range of wiki nodes to return (not inclusive)
Returns:
the range of matching wiki nodes
Throws:
SystemException - if a system exception occurred

findByCompanyId

List<WikiNode> findByCompanyId(long companyId,
                               int start,
                               int end,
                               OrderByComparator orderByComparator)
                               throws SystemException
Finds an ordered range of all the wiki nodes where companyId = ?.

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.

Parameters:
companyId - the company id to search with
start - the lower bound of the range of wiki nodes to return
end - the upper bound of the range of wiki nodes to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching wiki nodes
Throws:
SystemException - if a system exception occurred

findByCompanyId_First

WikiNode findByCompanyId_First(long companyId,
                               OrderByComparator orderByComparator)
                               throws SystemException,
                                      NoSuchNodeException
Finds the first wiki node in the ordered set where companyId = ?.

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.

Parameters:
companyId - the company id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching wiki node
Throws:
NoSuchNodeException - if a matching wiki node could not be found
SystemException - if a system exception occurred

findByCompanyId_Last

WikiNode findByCompanyId_Last(long companyId,
                              OrderByComparator orderByComparator)
                              throws SystemException,
                                     NoSuchNodeException
Finds the last wiki node in the ordered set where companyId = ?.

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.

Parameters:
companyId - the company id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching wiki node
Throws:
NoSuchNodeException - if a matching wiki node could not be found
SystemException - if a system exception occurred

findByCompanyId_PrevAndNext

WikiNode[] findByCompanyId_PrevAndNext(long nodeId,
                                       long companyId,
                                       OrderByComparator orderByComparator)
                                       throws SystemException,
                                              NoSuchNodeException
Finds the wiki nodes before and after the current wiki node in the ordered set where companyId = ?.

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.

Parameters:
nodeId - the primary key of the current wiki node
companyId - the company id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next wiki node
Throws:
NoSuchNodeException - if a wiki node with the primary key could not be found
SystemException - if a system exception occurred

findByG_N

WikiNode findByG_N(long groupId,
                   String name)
                   throws SystemException,
                          NoSuchNodeException
Finds the wiki node where groupId = ? and name = ? or throws a NoSuchNodeException if it could not be found.

Parameters:
groupId - the group id to search with
name - the name to search with
Returns:
the matching wiki node
Throws:
NoSuchNodeException - if a matching wiki node could not be found
SystemException - if a system exception occurred

fetchByG_N

WikiNode fetchByG_N(long groupId,
                    String name)
                    throws SystemException
Finds the wiki node where groupId = ? and name = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
groupId - the group id to search with
name - the name to search with
Returns:
the matching wiki node, or null if a matching wiki node could not be found
Throws:
SystemException - if a system exception occurred

fetchByG_N

WikiNode fetchByG_N(long groupId,
                    String name,
                    boolean retrieveFromCache)
                    throws SystemException
Finds the wiki node where groupId = ? and name = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
groupId - the group id to search with
name - the name to search with
Returns:
the matching wiki node, or null if a matching wiki node could not be found
Throws:
SystemException - if a system exception occurred

findAll

List<WikiNode> findAll()
                       throws SystemException
Finds all the wiki nodes.

Returns:
the wiki nodes
Throws:
SystemException - if a system exception occurred

findAll

List<WikiNode> findAll(int start,
                       int end)
                       throws SystemException
Finds a range of all the wiki nodes.

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.

Parameters:
start - the lower bound of the range of wiki nodes to return
end - the upper bound of the range of wiki nodes to return (not inclusive)
Returns:
the range of wiki nodes
Throws:
SystemException - if a system exception occurred

findAll

List<WikiNode> findAll(int start,
                       int end,
                       OrderByComparator orderByComparator)
                       throws SystemException
Finds an ordered range of all the wiki nodes.

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.

Parameters:
start - the lower bound of the range of wiki nodes to return
end - the upper bound of the range of wiki nodes to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of wiki nodes
Throws:
SystemException - if a system exception occurred

removeByUuid

void removeByUuid(String uuid)
                  throws SystemException
Removes all the wiki nodes where uuid = ? from the database.

Parameters:
uuid - the uuid to search with
Throws:
SystemException - if a system exception occurred

removeByUUID_G

void removeByUUID_G(String uuid,
                    long groupId)
                    throws SystemException,
                           NoSuchNodeException
Removes the wiki node where uuid = ? and groupId = ? from the database.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Throws:
SystemException - if a system exception occurred
NoSuchNodeException

removeByGroupId

void removeByGroupId(long groupId)
                     throws SystemException
Removes all the wiki nodes where groupId = ? from the database.

Parameters:
groupId - the group id to search with
Throws:
SystemException - if a system exception occurred

removeByCompanyId

void removeByCompanyId(long companyId)
                       throws SystemException
Removes all the wiki nodes where companyId = ? from the database.

Parameters:
companyId - the company id to search with
Throws:
SystemException - if a system exception occurred

removeByG_N

void removeByG_N(long groupId,
                 String name)
                 throws SystemException,
                        NoSuchNodeException
Removes the wiki node where groupId = ? and name = ? from the database.

Parameters:
groupId - the group id to search with
name - the name to search with
Throws:
SystemException - if a system exception occurred
NoSuchNodeException

removeAll

void removeAll()
               throws SystemException
Removes all the wiki nodes from the database.

Throws:
SystemException - if a system exception occurred

countByUuid

int countByUuid(String uuid)
                throws SystemException
Counts all the wiki nodes where uuid = ?.

Parameters:
uuid - the uuid to search with
Returns:
the number of matching wiki nodes
Throws:
SystemException - if a system exception occurred

countByUUID_G

int countByUUID_G(String uuid,
                  long groupId)
                  throws SystemException
Counts all the wiki nodes where uuid = ? and groupId = ?.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Returns:
the number of matching wiki nodes
Throws:
SystemException - if a system exception occurred

countByGroupId

int countByGroupId(long groupId)
                   throws SystemException
Counts all the wiki nodes where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the number of matching wiki nodes
Throws:
SystemException - if a system exception occurred

filterCountByGroupId

int filterCountByGroupId(long groupId)
                         throws SystemException
Filters by the user's permissions and counts all the wiki nodes where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the number of matching wiki nodes that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByCompanyId

int countByCompanyId(long companyId)
                     throws SystemException
Counts all the wiki nodes where companyId = ?.

Parameters:
companyId - the company id to search with
Returns:
the number of matching wiki nodes
Throws:
SystemException - if a system exception occurred

countByG_N

int countByG_N(long groupId,
               String name)
               throws SystemException
Counts all the wiki nodes where groupId = ? and name = ?.

Parameters:
groupId - the group id to search with
name - the name to search with
Returns:
the number of matching wiki nodes
Throws:
SystemException - if a system exception occurred

filterCountByG_N

int filterCountByG_N(long groupId,
                     String name)
                     throws SystemException
Filters by the user's permissions and counts all the wiki nodes where groupId = ? and name = ?.

Parameters:
groupId - the group id to search with
name - the name to search with
Returns:
the number of matching wiki nodes that the user has permission to view
Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Counts all the wiki nodes.

Returns:
the number of wiki nodes
Throws:
SystemException - if a system exception occurred

Liferay 6.0.5