|
Liferay 6.1.0-ce-rc1 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface RepositoryPersistence
The persistence interface for the repository service.
Caching information and settings can be found in portal.properties
RepositoryPersistenceImpl,
RepositoryUtil| Method Summary | |
|---|---|
void |
cacheResult(List<Repository> repositories)
Caches the repositories in the entity cache if it is enabled. |
void |
cacheResult(Repository repository)
Caches the repository in the entity cache if it is enabled. |
int |
countAll()
Returns the number of repositories. |
int |
countByGroupId(long groupId)
Returns the number of repositories where groupId = ?. |
int |
countByUUID_G(String uuid,
long groupId)
Returns the number of repositories where uuid = ? and groupId = ?. |
int |
countByUuid(String uuid)
Returns the number of repositories where uuid = ?. |
Repository |
create(long repositoryId)
Creates a new repository with the primary key. |
Repository |
fetchByPrimaryKey(long repositoryId)
Returns the repository with the primary key or returns null if it could not be found. |
Repository |
fetchByUUID_G(String uuid,
long groupId)
Returns the repository where uuid = ? and groupId = ? or returns null if it could not be found. |
Repository |
fetchByUUID_G(String uuid,
long groupId,
boolean retrieveFromCache)
Returns the repository where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache. |
List<Repository> |
findAll()
Returns all the repositories. |
List<Repository> |
findAll(int start,
int end)
Returns a range of all the repositories. |
List<Repository> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the repositories. |
Repository |
findByGroupId_First(long groupId,
OrderByComparator orderByComparator)
Returns the first repository in the ordered set where groupId = ?. |
Repository |
findByGroupId_Last(long groupId,
OrderByComparator orderByComparator)
Returns the last repository in the ordered set where groupId = ?. |
Repository[] |
findByGroupId_PrevAndNext(long repositoryId,
long groupId,
OrderByComparator orderByComparator)
Returns the repositories before and after the current repository in the ordered set where groupId = ?. |
List<Repository> |
findByGroupId(long groupId)
Returns all the repositories where groupId = ?. |
List<Repository> |
findByGroupId(long groupId,
int start,
int end)
Returns a range of all the repositories where groupId = ?. |
List<Repository> |
findByGroupId(long groupId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the repositories where groupId = ?. |
Repository |
findByPrimaryKey(long repositoryId)
Returns the repository with the primary key or throws a NoSuchRepositoryException if it could not be found. |
Repository |
findByUuid_First(String uuid,
OrderByComparator orderByComparator)
Returns the first repository in the ordered set where uuid = ?. |
Repository |
findByUUID_G(String uuid,
long groupId)
Returns the repository where uuid = ? and groupId = ? or throws a NoSuchRepositoryException if it could not be found. |
Repository |
findByUuid_Last(String uuid,
OrderByComparator orderByComparator)
Returns the last repository in the ordered set where uuid = ?. |
Repository[] |
findByUuid_PrevAndNext(long repositoryId,
String uuid,
OrderByComparator orderByComparator)
Returns the repositories before and after the current repository in the ordered set where uuid = ?. |
List<Repository> |
findByUuid(String uuid)
Returns all the repositories where uuid = ?. |
List<Repository> |
findByUuid(String uuid,
int start,
int end)
Returns a range of all the repositories where uuid = ?. |
List<Repository> |
findByUuid(String uuid,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the repositories where uuid = ?. |
Repository |
remove(long repositoryId)
Removes the repository with the primary key from the database. |
void |
removeAll()
Removes all the repositories from the database. |
void |
removeByGroupId(long groupId)
Removes all the repositories where groupId = ? from the database. |
void |
removeByUUID_G(String uuid,
long groupId)
Removes the repository where uuid = ? and groupId = ? from the database. |
void |
removeByUuid(String uuid)
Removes all the repositories where uuid = ? from the database. |
Repository |
updateImpl(Repository repository,
boolean merge)
|
| Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence |
|---|
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update |
| Method Detail |
|---|
void cacheResult(Repository repository)
repository - the repositoryvoid cacheResult(List<Repository> repositories)
repositories - the repositoriesRepository create(long repositoryId)
repositoryId - the primary key for the new repository
Repository remove(long repositoryId)
throws NoSuchRepositoryException,
SystemException
repositoryId - the primary key of the repository
NoSuchRepositoryException - if a repository with the primary key could not be found
SystemException - if a system exception occurred
Repository updateImpl(Repository repository,
boolean merge)
throws SystemException
SystemException
Repository findByPrimaryKey(long repositoryId)
throws NoSuchRepositoryException,
SystemException
NoSuchRepositoryException if it could not be found.
repositoryId - the primary key of the repository
NoSuchRepositoryException - if a repository with the primary key could not be found
SystemException - if a system exception occurred
Repository fetchByPrimaryKey(long repositoryId)
throws SystemException
null if it could not be found.
repositoryId - the primary key of the repository
null if a repository with the primary key could not be found
SystemException - if a system exception occurred
List<Repository> findByUuid(String uuid)
throws SystemException
uuid - the uuid
SystemException - if a system exception occurred
List<Repository> 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 uuidstart - the lower bound of the range of repositoriesend - the upper bound of the range of repositories (not inclusive)
SystemException - if a system exception occurred
List<Repository> 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 uuidstart - the lower bound of the range of repositoriesend - the upper bound of the range of repositories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
SystemException - if a system exception occurred
Repository findByUuid_First(String uuid,
OrderByComparator orderByComparator)
throws NoSuchRepositoryException,
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 uuidorderByComparator - the comparator to order the set by (optionally null)
NoSuchRepositoryException - if a matching repository could not be found
SystemException - if a system exception occurred
Repository findByUuid_Last(String uuid,
OrderByComparator orderByComparator)
throws NoSuchRepositoryException,
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 uuidorderByComparator - the comparator to order the set by (optionally null)
NoSuchRepositoryException - if a matching repository could not be found
SystemException - if a system exception occurred
Repository[] findByUuid_PrevAndNext(long repositoryId,
String uuid,
OrderByComparator orderByComparator)
throws NoSuchRepositoryException,
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.
repositoryId - the primary key of the current repositoryuuid - the uuidorderByComparator - the comparator to order the set by (optionally null)
NoSuchRepositoryException - if a repository with the primary key could not be found
SystemException - if a system exception occurred
Repository findByUUID_G(String uuid,
long groupId)
throws NoSuchRepositoryException,
SystemException
NoSuchRepositoryException if it could not be found.
uuid - the uuidgroupId - the group ID
NoSuchRepositoryException - if a matching repository could not be found
SystemException - if a system exception occurred
Repository fetchByUUID_G(String uuid,
long groupId)
throws SystemException
null if it could not be found. Uses the finder cache.
uuid - the uuidgroupId - the group ID
null if a matching repository could not be found
SystemException - if a system exception occurred
Repository fetchByUUID_G(String uuid,
long groupId,
boolean retrieveFromCache)
throws SystemException
null if it could not be found, optionally using the finder cache.
uuid - the uuidgroupId - the group IDretrieveFromCache - whether to use the finder cache
null if a matching repository could not be found
SystemException - if a system exception occurred
List<Repository> findByGroupId(long groupId)
throws SystemException
groupId - the group ID
SystemException - if a system exception occurred
List<Repository> findByGroupId(long groupId,
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.
groupId - the group IDstart - the lower bound of the range of repositoriesend - the upper bound of the range of repositories (not inclusive)
SystemException - if a system exception occurred
List<Repository> findByGroupId(long groupId,
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.
groupId - the group IDstart - the lower bound of the range of repositoriesend - the upper bound of the range of repositories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
SystemException - if a system exception occurred
Repository findByGroupId_First(long groupId,
OrderByComparator orderByComparator)
throws NoSuchRepositoryException,
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.
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)
NoSuchRepositoryException - if a matching repository could not be found
SystemException - if a system exception occurred
Repository findByGroupId_Last(long groupId,
OrderByComparator orderByComparator)
throws NoSuchRepositoryException,
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.
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)
NoSuchRepositoryException - if a matching repository could not be found
SystemException - if a system exception occurred
Repository[] findByGroupId_PrevAndNext(long repositoryId,
long groupId,
OrderByComparator orderByComparator)
throws NoSuchRepositoryException,
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.
repositoryId - the primary key of the current repositorygroupId - the group IDorderByComparator - the comparator to order the set by (optionally null)
NoSuchRepositoryException - if a repository with the primary key could not be found
SystemException - if a system exception occurred
List<Repository> findAll()
throws SystemException
SystemException - if a system exception occurred
List<Repository> 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 repositoriesend - the upper bound of the range of repositories (not inclusive)
SystemException - if a system exception occurred
List<Repository> 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 repositoriesend - the upper bound of the range of repositories (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
SystemException - if a system exception occurred
void removeByUuid(String uuid)
throws SystemException
uuid - the uuid
SystemException - if a system exception occurred
void removeByUUID_G(String uuid,
long groupId)
throws NoSuchRepositoryException,
SystemException
uuid - the uuidgroupId - the group ID
SystemException - if a system exception occurred
NoSuchRepositoryException
void removeByGroupId(long groupId)
throws SystemException
groupId - the group ID
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
SystemException - if a system exception occurred
int countByUUID_G(String uuid,
long groupId)
throws SystemException
uuid - the uuidgroupId - the group ID
SystemException - if a system exception occurred
int countByGroupId(long groupId)
throws SystemException
groupId - the group ID
SystemException - if a system exception occurred
int countAll()
throws SystemException
SystemException - if a system exception occurred
|
Liferay 6.1.0-ce-rc1 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||