Liferay 6.0.3

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

All Superinterfaces:
BasePersistence<WikiPageResource>
All Known Implementing Classes:
WikiPageResourcePersistenceImpl

public interface WikiPageResourcePersistence
extends BasePersistence<WikiPageResource>

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

Method Summary
 void cacheResult(List<WikiPageResource> wikiPageResources)
           
 void cacheResult(WikiPageResource wikiPageResource)
           
 int countAll()
           
 int countByN_T(long nodeId, String title)
           
 int countByUuid(String uuid)
           
 WikiPageResource create(long resourcePrimKey)
           
 WikiPageResource fetchByN_T(long nodeId, String title)
           
 WikiPageResource fetchByN_T(long nodeId, String title, boolean retrieveFromCache)
           
 WikiPageResource fetchByPrimaryKey(long resourcePrimKey)
           
 List<WikiPageResource> findAll()
           
 List<WikiPageResource> findAll(int start, int end)
           
 List<WikiPageResource> findAll(int start, int end, OrderByComparator orderByComparator)
           
 WikiPageResource findByN_T(long nodeId, String title)
           
 WikiPageResource findByPrimaryKey(long resourcePrimKey)
           
 WikiPageResource findByUuid_First(String uuid, OrderByComparator orderByComparator)
           
 WikiPageResource findByUuid_Last(String uuid, OrderByComparator orderByComparator)
           
 WikiPageResource[] findByUuid_PrevAndNext(long resourcePrimKey, String uuid, OrderByComparator orderByComparator)
           
 List<WikiPageResource> findByUuid(String uuid)
           
 List<WikiPageResource> findByUuid(String uuid, int start, int end)
           
 List<WikiPageResource> findByUuid(String uuid, int start, int end, OrderByComparator orderByComparator)
           
 WikiPageResource remove(long resourcePrimKey)
           
 void removeAll()
           
 void removeByN_T(long nodeId, String title)
           
 void removeByUuid(String uuid)
           
 WikiPageResource updateImpl(WikiPageResource wikiPageResource, 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(WikiPageResource wikiPageResource)

cacheResult

void cacheResult(List<WikiPageResource> wikiPageResources)

create

WikiPageResource create(long resourcePrimKey)

remove

WikiPageResource remove(long resourcePrimKey)
                        throws SystemException,
                               NoSuchPageResourceException
Throws:
SystemException
NoSuchPageResourceException

updateImpl

WikiPageResource updateImpl(WikiPageResource wikiPageResource,
                            boolean merge)
                            throws SystemException
Throws:
SystemException

findByPrimaryKey

WikiPageResource findByPrimaryKey(long resourcePrimKey)
                                  throws SystemException,
                                         NoSuchPageResourceException
Throws:
SystemException
NoSuchPageResourceException

fetchByPrimaryKey

WikiPageResource fetchByPrimaryKey(long resourcePrimKey)
                                   throws SystemException
Throws:
SystemException

findByUuid

List<WikiPageResource> findByUuid(String uuid)
                                  throws SystemException
Throws:
SystemException

findByUuid

List<WikiPageResource> findByUuid(String uuid,
                                  int start,
                                  int end)
                                  throws SystemException
Throws:
SystemException

findByUuid

List<WikiPageResource> findByUuid(String uuid,
                                  int start,
                                  int end,
                                  OrderByComparator orderByComparator)
                                  throws SystemException
Throws:
SystemException

findByUuid_First

WikiPageResource findByUuid_First(String uuid,
                                  OrderByComparator orderByComparator)
                                  throws SystemException,
                                         NoSuchPageResourceException
Throws:
SystemException
NoSuchPageResourceException

findByUuid_Last

WikiPageResource findByUuid_Last(String uuid,
                                 OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchPageResourceException
Throws:
SystemException
NoSuchPageResourceException

findByUuid_PrevAndNext

WikiPageResource[] findByUuid_PrevAndNext(long resourcePrimKey,
                                          String uuid,
                                          OrderByComparator orderByComparator)
                                          throws SystemException,
                                                 NoSuchPageResourceException
Throws:
SystemException
NoSuchPageResourceException

findByN_T

WikiPageResource findByN_T(long nodeId,
                           String title)
                           throws SystemException,
                                  NoSuchPageResourceException
Throws:
SystemException
NoSuchPageResourceException

fetchByN_T

WikiPageResource fetchByN_T(long nodeId,
                            String title)
                            throws SystemException
Throws:
SystemException

fetchByN_T

WikiPageResource fetchByN_T(long nodeId,
                            String title,
                            boolean retrieveFromCache)
                            throws SystemException
Throws:
SystemException

findAll

List<WikiPageResource> findAll()
                               throws SystemException
Throws:
SystemException

findAll

List<WikiPageResource> findAll(int start,
                               int end)
                               throws SystemException
Throws:
SystemException

findAll

List<WikiPageResource> findAll(int start,
                               int end,
                               OrderByComparator orderByComparator)
                               throws SystemException
Throws:
SystemException

removeByUuid

void removeByUuid(String uuid)
                  throws SystemException
Throws:
SystemException

removeByN_T

void removeByN_T(long nodeId,
                 String title)
                 throws SystemException,
                        NoSuchPageResourceException
Throws:
SystemException
NoSuchPageResourceException

removeAll

void removeAll()
               throws SystemException
Throws:
SystemException

countByUuid

int countByUuid(String uuid)
                throws SystemException
Throws:
SystemException

countByN_T

int countByN_T(long nodeId,
               String title)
               throws SystemException
Throws:
SystemException

countAll

int countAll()
             throws SystemException
Throws:
SystemException

Liferay 6.0.3