com.liferay.portlet.bookmarks.service.persistence
Interface BookmarksEntryPersistence
- All Superinterfaces:
- BasePersistence<BookmarksEntry>
public interface BookmarksEntryPersistence
- extends BasePersistence<BookmarksEntry>
View Source
ServiceBuilder generated this class. Modifications in this class will be
overwritten the next time is generated.
- Author:
- Brian Wing Shun Chan
- See Also:
BookmarksEntryPersistenceImpl
,
BookmarksEntryUtil
- Generated:
Method Summary |
void |
cacheResult(BookmarksEntry bookmarksEntry)
|
void |
cacheResult(java.util.List<BookmarksEntry> bookmarksEntries)
|
int |
countAll()
|
int |
countByG_F(long groupId,
long folderId)
|
int |
countByG_U(long groupId,
long userId)
|
int |
countByGroupId(long groupId)
|
int |
countByUUID_G(java.lang.String uuid,
long groupId)
|
int |
countByUuid(java.lang.String uuid)
|
BookmarksEntry |
create(long entryId)
|
BookmarksEntry |
fetchByPrimaryKey(long entryId)
|
BookmarksEntry |
fetchByUUID_G(java.lang.String uuid,
long groupId)
|
BookmarksEntry |
fetchByUUID_G(java.lang.String uuid,
long groupId,
boolean retrieveFromCache)
|
int |
filterCountByG_F(long groupId,
long folderId)
|
int |
filterCountByG_U(long groupId,
long userId)
|
int |
filterCountByGroupId(long groupId)
|
java.util.List<BookmarksEntry> |
filterFindByG_F(long groupId,
long folderId)
|
java.util.List<BookmarksEntry> |
filterFindByG_F(long groupId,
long folderId,
int start,
int end)
|
java.util.List<BookmarksEntry> |
filterFindByG_F(long groupId,
long folderId,
int start,
int end,
OrderByComparator orderByComparator)
|
java.util.List<BookmarksEntry> |
filterFindByG_U(long groupId,
long userId)
|
java.util.List<BookmarksEntry> |
filterFindByG_U(long groupId,
long userId,
int start,
int end)
|
java.util.List<BookmarksEntry> |
filterFindByG_U(long groupId,
long userId,
int start,
int end,
OrderByComparator orderByComparator)
|
java.util.List<BookmarksEntry> |
filterFindByGroupId(long groupId)
|
java.util.List<BookmarksEntry> |
filterFindByGroupId(long groupId,
int start,
int end)
|
java.util.List<BookmarksEntry> |
filterFindByGroupId(long groupId,
int start,
int end,
OrderByComparator orderByComparator)
|
java.util.List<BookmarksEntry> |
findAll()
|
java.util.List<BookmarksEntry> |
findAll(int start,
int end)
|
java.util.List<BookmarksEntry> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
|
BookmarksEntry |
findByG_F_First(long groupId,
long folderId,
OrderByComparator orderByComparator)
|
BookmarksEntry |
findByG_F_Last(long groupId,
long folderId,
OrderByComparator orderByComparator)
|
BookmarksEntry[] |
findByG_F_PrevAndNext(long entryId,
long groupId,
long folderId,
OrderByComparator orderByComparator)
|
java.util.List<BookmarksEntry> |
findByG_F(long groupId,
long folderId)
|
java.util.List<BookmarksEntry> |
findByG_F(long groupId,
long folderId,
int start,
int end)
|
java.util.List<BookmarksEntry> |
findByG_F(long groupId,
long folderId,
int start,
int end,
OrderByComparator orderByComparator)
|
BookmarksEntry |
findByG_U_First(long groupId,
long userId,
OrderByComparator orderByComparator)
|
BookmarksEntry |
findByG_U_Last(long groupId,
long userId,
OrderByComparator orderByComparator)
|
BookmarksEntry[] |
findByG_U_PrevAndNext(long entryId,
long groupId,
long userId,
OrderByComparator orderByComparator)
|
java.util.List<BookmarksEntry> |
findByG_U(long groupId,
long userId)
|
java.util.List<BookmarksEntry> |
findByG_U(long groupId,
long userId,
int start,
int end)
|
java.util.List<BookmarksEntry> |
findByG_U(long groupId,
long userId,
int start,
int end,
OrderByComparator orderByComparator)
|
BookmarksEntry |
findByGroupId_First(long groupId,
OrderByComparator orderByComparator)
|
BookmarksEntry |
findByGroupId_Last(long groupId,
OrderByComparator orderByComparator)
|
BookmarksEntry[] |
findByGroupId_PrevAndNext(long entryId,
long groupId,
OrderByComparator orderByComparator)
|
java.util.List<BookmarksEntry> |
findByGroupId(long groupId)
|
java.util.List<BookmarksEntry> |
findByGroupId(long groupId,
int start,
int end)
|
java.util.List<BookmarksEntry> |
findByGroupId(long groupId,
int start,
int end,
OrderByComparator orderByComparator)
|
BookmarksEntry |
findByPrimaryKey(long entryId)
|
BookmarksEntry |
findByUuid_First(java.lang.String uuid,
OrderByComparator orderByComparator)
|
BookmarksEntry |
findByUUID_G(java.lang.String uuid,
long groupId)
|
BookmarksEntry |
findByUuid_Last(java.lang.String uuid,
OrderByComparator orderByComparator)
|
BookmarksEntry[] |
findByUuid_PrevAndNext(long entryId,
java.lang.String uuid,
OrderByComparator orderByComparator)
|
java.util.List<BookmarksEntry> |
findByUuid(java.lang.String uuid)
|
java.util.List<BookmarksEntry> |
findByUuid(java.lang.String uuid,
int start,
int end)
|
java.util.List<BookmarksEntry> |
findByUuid(java.lang.String uuid,
int start,
int end,
OrderByComparator orderByComparator)
|
BookmarksEntry |
remove(long entryId)
|
void |
removeAll()
|
void |
removeByG_F(long groupId,
long folderId)
|
void |
removeByG_U(long groupId,
long userId)
|
void |
removeByGroupId(long groupId)
|
void |
removeByUUID_G(java.lang.String uuid,
long groupId)
|
void |
removeByUuid(java.lang.String uuid)
|
BookmarksEntry |
updateImpl(BookmarksEntry bookmarksEntry,
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 |
cacheResult
void cacheResult(BookmarksEntry bookmarksEntry)
cacheResult
void cacheResult(java.util.List<BookmarksEntry> bookmarksEntries)
create
BookmarksEntry create(long entryId)
remove
BookmarksEntry remove(long entryId)
throws SystemException,
NoSuchEntryException
- Throws:
SystemException
NoSuchEntryException
updateImpl
BookmarksEntry updateImpl(BookmarksEntry bookmarksEntry,
boolean merge)
throws SystemException
- Throws:
SystemException
findByPrimaryKey
BookmarksEntry findByPrimaryKey(long entryId)
throws SystemException,
NoSuchEntryException
- Throws:
SystemException
NoSuchEntryException
fetchByPrimaryKey
BookmarksEntry fetchByPrimaryKey(long entryId)
throws SystemException
- Throws:
SystemException
findByUuid
java.util.List<BookmarksEntry> findByUuid(java.lang.String uuid)
throws SystemException
- Throws:
SystemException
findByUuid
java.util.List<BookmarksEntry> findByUuid(java.lang.String uuid,
int start,
int end)
throws SystemException
- Throws:
SystemException
findByUuid
java.util.List<BookmarksEntry> findByUuid(java.lang.String uuid,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
- Throws:
SystemException
findByUuid_First
BookmarksEntry findByUuid_First(java.lang.String uuid,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchEntryException
- Throws:
SystemException
NoSuchEntryException
findByUuid_Last
BookmarksEntry findByUuid_Last(java.lang.String uuid,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchEntryException
- Throws:
SystemException
NoSuchEntryException
findByUuid_PrevAndNext
BookmarksEntry[] findByUuid_PrevAndNext(long entryId,
java.lang.String uuid,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchEntryException
- Throws:
SystemException
NoSuchEntryException
findByUUID_G
BookmarksEntry findByUUID_G(java.lang.String uuid,
long groupId)
throws SystemException,
NoSuchEntryException
- Throws:
SystemException
NoSuchEntryException
fetchByUUID_G
BookmarksEntry fetchByUUID_G(java.lang.String uuid,
long groupId)
throws SystemException
- Throws:
SystemException
fetchByUUID_G
BookmarksEntry fetchByUUID_G(java.lang.String uuid,
long groupId,
boolean retrieveFromCache)
throws SystemException
- Throws:
SystemException
findByGroupId
java.util.List<BookmarksEntry> findByGroupId(long groupId)
throws SystemException
- Throws:
SystemException
findByGroupId
java.util.List<BookmarksEntry> findByGroupId(long groupId,
int start,
int end)
throws SystemException
- Throws:
SystemException
findByGroupId
java.util.List<BookmarksEntry> findByGroupId(long groupId,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
- Throws:
SystemException
findByGroupId_First
BookmarksEntry findByGroupId_First(long groupId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchEntryException
- Throws:
SystemException
NoSuchEntryException
findByGroupId_Last
BookmarksEntry findByGroupId_Last(long groupId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchEntryException
- Throws:
SystemException
NoSuchEntryException
findByGroupId_PrevAndNext
BookmarksEntry[] findByGroupId_PrevAndNext(long entryId,
long groupId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchEntryException
- Throws:
SystemException
NoSuchEntryException
filterFindByGroupId
java.util.List<BookmarksEntry> filterFindByGroupId(long groupId)
throws SystemException
- Throws:
SystemException
filterFindByGroupId
java.util.List<BookmarksEntry> filterFindByGroupId(long groupId,
int start,
int end)
throws SystemException
- Throws:
SystemException
filterFindByGroupId
java.util.List<BookmarksEntry> filterFindByGroupId(long groupId,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
- Throws:
SystemException
findByG_U
java.util.List<BookmarksEntry> findByG_U(long groupId,
long userId)
throws SystemException
- Throws:
SystemException
findByG_U
java.util.List<BookmarksEntry> findByG_U(long groupId,
long userId,
int start,
int end)
throws SystemException
- Throws:
SystemException
findByG_U
java.util.List<BookmarksEntry> findByG_U(long groupId,
long userId,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
- Throws:
SystemException
findByG_U_First
BookmarksEntry findByG_U_First(long groupId,
long userId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchEntryException
- Throws:
SystemException
NoSuchEntryException
findByG_U_Last
BookmarksEntry findByG_U_Last(long groupId,
long userId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchEntryException
- Throws:
SystemException
NoSuchEntryException
findByG_U_PrevAndNext
BookmarksEntry[] findByG_U_PrevAndNext(long entryId,
long groupId,
long userId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchEntryException
- Throws:
SystemException
NoSuchEntryException
filterFindByG_U
java.util.List<BookmarksEntry> filterFindByG_U(long groupId,
long userId)
throws SystemException
- Throws:
SystemException
filterFindByG_U
java.util.List<BookmarksEntry> filterFindByG_U(long groupId,
long userId,
int start,
int end)
throws SystemException
- Throws:
SystemException
filterFindByG_U
java.util.List<BookmarksEntry> filterFindByG_U(long groupId,
long userId,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
- Throws:
SystemException
findByG_F
java.util.List<BookmarksEntry> findByG_F(long groupId,
long folderId)
throws SystemException
- Throws:
SystemException
findByG_F
java.util.List<BookmarksEntry> findByG_F(long groupId,
long folderId,
int start,
int end)
throws SystemException
- Throws:
SystemException
findByG_F
java.util.List<BookmarksEntry> findByG_F(long groupId,
long folderId,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
- Throws:
SystemException
findByG_F_First
BookmarksEntry findByG_F_First(long groupId,
long folderId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchEntryException
- Throws:
SystemException
NoSuchEntryException
findByG_F_Last
BookmarksEntry findByG_F_Last(long groupId,
long folderId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchEntryException
- Throws:
SystemException
NoSuchEntryException
findByG_F_PrevAndNext
BookmarksEntry[] findByG_F_PrevAndNext(long entryId,
long groupId,
long folderId,
OrderByComparator orderByComparator)
throws SystemException,
NoSuchEntryException
- Throws:
SystemException
NoSuchEntryException
filterFindByG_F
java.util.List<BookmarksEntry> filterFindByG_F(long groupId,
long folderId)
throws SystemException
- Throws:
SystemException
filterFindByG_F
java.util.List<BookmarksEntry> filterFindByG_F(long groupId,
long folderId,
int start,
int end)
throws SystemException
- Throws:
SystemException
filterFindByG_F
java.util.List<BookmarksEntry> filterFindByG_F(long groupId,
long folderId,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
- Throws:
SystemException
findAll
java.util.List<BookmarksEntry> findAll()
throws SystemException
- Throws:
SystemException
findAll
java.util.List<BookmarksEntry> findAll(int start,
int end)
throws SystemException
- Throws:
SystemException
findAll
java.util.List<BookmarksEntry> findAll(int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
- Throws:
SystemException
removeByUuid
void removeByUuid(java.lang.String uuid)
throws SystemException
- Throws:
SystemException
removeByUUID_G
void removeByUUID_G(java.lang.String uuid,
long groupId)
throws SystemException,
NoSuchEntryException
- Throws:
SystemException
NoSuchEntryException
removeByGroupId
void removeByGroupId(long groupId)
throws SystemException
- Throws:
SystemException
removeByG_U
void removeByG_U(long groupId,
long userId)
throws SystemException
- Throws:
SystemException
removeByG_F
void removeByG_F(long groupId,
long folderId)
throws SystemException
- Throws:
SystemException
removeAll
void removeAll()
throws SystemException
- Throws:
SystemException
countByUuid
int countByUuid(java.lang.String uuid)
throws SystemException
- Throws:
SystemException
countByUUID_G
int countByUUID_G(java.lang.String uuid,
long groupId)
throws SystemException
- Throws:
SystemException
countByGroupId
int countByGroupId(long groupId)
throws SystemException
- Throws:
SystemException
filterCountByGroupId
int filterCountByGroupId(long groupId)
throws SystemException
- Throws:
SystemException
countByG_U
int countByG_U(long groupId,
long userId)
throws SystemException
- Throws:
SystemException
filterCountByG_U
int filterCountByG_U(long groupId,
long userId)
throws SystemException
- Throws:
SystemException
countByG_F
int countByG_F(long groupId,
long folderId)
throws SystemException
- Throws:
SystemException
filterCountByG_F
int filterCountByG_F(long groupId,
long folderId)
throws SystemException
- Throws:
SystemException
countAll
int countAll()
throws SystemException
- Throws:
SystemException