Class RepositoryEntryUtil

Object
com.liferay.portal.kernel.service.persistence.RepositoryEntryUtil

public class RepositoryEntryUtil extends Object
The persistence utility for the repository entry service. This utility wraps com.liferay.portal.service.persistence.impl.RepositoryEntryPersistenceImpl and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.

Caching information and settings can be found in portal.properties

Author:
Brian Wing Shun Chan
See Also:
{$generated.description}
  • Constructor Details

    • RepositoryEntryUtil

      public RepositoryEntryUtil()
  • Method Details

    • clearCache

      public static void clearCache()
      See Also:
    • clearCache

      public static void clearCache(RepositoryEntry repositoryEntry)
      See Also:
    • countWithDynamicQuery

      public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
      See Also:
    • fetchByPrimaryKeys

      public static Map<Serializable,RepositoryEntry> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
      See Also:
    • findWithDynamicQuery

      public static List<RepositoryEntry> findWithDynamicQuery(DynamicQuery dynamicQuery)
      See Also:
    • findWithDynamicQuery

      public static List<RepositoryEntry> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
      See Also:
    • findWithDynamicQuery

      public static List<RepositoryEntry> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<RepositoryEntry> orderByComparator)
      See Also:
    • update

      public static RepositoryEntry update(RepositoryEntry repositoryEntry)
      See Also:
    • update

      public static RepositoryEntry update(RepositoryEntry repositoryEntry, ServiceContext serviceContext)
      See Also:
    • findByUuid

      public static List<RepositoryEntry> findByUuid(String uuid)
      Returns all the repository entries where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the matching repository entries
    • findByUuid

      public static List<RepositoryEntry> findByUuid(String uuid, int start, int end)
      Returns a range of all the repository entries 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RepositoryEntryModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of repository entries
      end - the upper bound of the range of repository entries (not inclusive)
      Returns:
      the range of matching repository entries
    • findByUuid

      public static List<RepositoryEntry> findByUuid(String uuid, int start, int end, OrderByComparator<RepositoryEntry> orderByComparator)
      Returns an ordered range of all the repository entries 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RepositoryEntryModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of repository entries
      end - the upper bound of the range of repository entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching repository entries
    • findByUuid

      public static List<RepositoryEntry> findByUuid(String uuid, int start, int end, OrderByComparator<RepositoryEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the repository entries 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RepositoryEntryModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of repository entries
      end - the upper bound of the range of repository entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching repository entries
    • findByUuid_First

      public static RepositoryEntry findByUuid_First(String uuid, OrderByComparator<RepositoryEntry> orderByComparator) throws NoSuchRepositoryEntryException
      Returns the first repository entry in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching repository entry
      Throws:
      NoSuchRepositoryEntryException - if a matching repository entry could not be found
      NoSuchRepositoryEntryException
    • fetchByUuid_First

      public static RepositoryEntry fetchByUuid_First(String uuid, OrderByComparator<RepositoryEntry> orderByComparator)
      Returns the first repository entry in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching repository entry, or null if a matching repository entry could not be found
    • findByUuid_Last

      public static RepositoryEntry findByUuid_Last(String uuid, OrderByComparator<RepositoryEntry> orderByComparator) throws NoSuchRepositoryEntryException
      Returns the last repository entry in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching repository entry
      Throws:
      NoSuchRepositoryEntryException - if a matching repository entry could not be found
      NoSuchRepositoryEntryException
    • fetchByUuid_Last

      public static RepositoryEntry fetchByUuid_Last(String uuid, OrderByComparator<RepositoryEntry> orderByComparator)
      Returns the last repository entry in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching repository entry, or null if a matching repository entry could not be found
    • findByUuid_PrevAndNext

      public static RepositoryEntry[] findByUuid_PrevAndNext(long repositoryEntryId, String uuid, OrderByComparator<RepositoryEntry> orderByComparator) throws NoSuchRepositoryEntryException
      Returns the repository entries before and after the current repository entry in the ordered set where uuid = ?.
      Parameters:
      repositoryEntryId - the primary key of the current repository entry
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next repository entry
      Throws:
      NoSuchRepositoryEntryException - if a repository entry with the primary key could not be found
      NoSuchRepositoryEntryException
    • removeByUuid

      public static void removeByUuid(String uuid)
      Removes all the repository entries where uuid = ? from the database.
      Parameters:
      uuid - the uuid
    • countByUuid

      public static int countByUuid(String uuid)
      Returns the number of repository entries where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the number of matching repository entries
    • findByUUID_G

      public static RepositoryEntry findByUUID_G(String uuid, long groupId) throws NoSuchRepositoryEntryException
      Returns the repository entry where uuid = ? and groupId = ? or throws a NoSuchRepositoryEntryException if it could not be found.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the matching repository entry
      Throws:
      NoSuchRepositoryEntryException - if a matching repository entry could not be found
      NoSuchRepositoryEntryException
    • fetchByUUID_G

      public static RepositoryEntry fetchByUUID_G(String uuid, long groupId)
      Returns the repository entry where uuid = ? and groupId = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the matching repository entry, or null if a matching repository entry could not be found
    • fetchByUUID_G

      public static RepositoryEntry fetchByUUID_G(String uuid, long groupId, boolean useFinderCache)
      Returns the repository entry where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      useFinderCache - whether to use the finder cache
      Returns:
      the matching repository entry, or null if a matching repository entry could not be found
    • removeByUUID_G

      public static RepositoryEntry removeByUUID_G(String uuid, long groupId) throws NoSuchRepositoryEntryException
      Removes the repository entry where uuid = ? and groupId = ? from the database.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the repository entry that was removed
      Throws:
      NoSuchRepositoryEntryException
    • countByUUID_G

      public static int countByUUID_G(String uuid, long groupId)
      Returns the number of repository entries where uuid = ? and groupId = ?.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the number of matching repository entries
    • findByUuid_C

      public static List<RepositoryEntry> findByUuid_C(String uuid, long companyId)
      Returns all the repository entries where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the matching repository entries
    • findByUuid_C

      public static List<RepositoryEntry> findByUuid_C(String uuid, long companyId, int start, int end)
      Returns a range of all the repository entries where uuid = ? and 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RepositoryEntryModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of repository entries
      end - the upper bound of the range of repository entries (not inclusive)
      Returns:
      the range of matching repository entries
    • findByUuid_C

      public static List<RepositoryEntry> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<RepositoryEntry> orderByComparator)
      Returns an ordered range of all the repository entries where uuid = ? and 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RepositoryEntryModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of repository entries
      end - the upper bound of the range of repository entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching repository entries
    • findByUuid_C

      public static List<RepositoryEntry> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<RepositoryEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the repository entries where uuid = ? and 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RepositoryEntryModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of repository entries
      end - the upper bound of the range of repository entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching repository entries
    • findByUuid_C_First

      public static RepositoryEntry findByUuid_C_First(String uuid, long companyId, OrderByComparator<RepositoryEntry> orderByComparator) throws NoSuchRepositoryEntryException
      Returns the first repository entry in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching repository entry
      Throws:
      NoSuchRepositoryEntryException - if a matching repository entry could not be found
      NoSuchRepositoryEntryException
    • fetchByUuid_C_First

      public static RepositoryEntry fetchByUuid_C_First(String uuid, long companyId, OrderByComparator<RepositoryEntry> orderByComparator)
      Returns the first repository entry in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching repository entry, or null if a matching repository entry could not be found
    • findByUuid_C_Last

      public static RepositoryEntry findByUuid_C_Last(String uuid, long companyId, OrderByComparator<RepositoryEntry> orderByComparator) throws NoSuchRepositoryEntryException
      Returns the last repository entry in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching repository entry
      Throws:
      NoSuchRepositoryEntryException - if a matching repository entry could not be found
      NoSuchRepositoryEntryException
    • fetchByUuid_C_Last

      public static RepositoryEntry fetchByUuid_C_Last(String uuid, long companyId, OrderByComparator<RepositoryEntry> orderByComparator)
      Returns the last repository entry in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching repository entry, or null if a matching repository entry could not be found
    • findByUuid_C_PrevAndNext

      public static RepositoryEntry[] findByUuid_C_PrevAndNext(long repositoryEntryId, String uuid, long companyId, OrderByComparator<RepositoryEntry> orderByComparator) throws NoSuchRepositoryEntryException
      Returns the repository entries before and after the current repository entry in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      repositoryEntryId - the primary key of the current repository entry
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next repository entry
      Throws:
      NoSuchRepositoryEntryException - if a repository entry with the primary key could not be found
      NoSuchRepositoryEntryException
    • removeByUuid_C

      public static void removeByUuid_C(String uuid, long companyId)
      Removes all the repository entries where uuid = ? and companyId = ? from the database.
      Parameters:
      uuid - the uuid
      companyId - the company ID
    • countByUuid_C

      public static int countByUuid_C(String uuid, long companyId)
      Returns the number of repository entries where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the number of matching repository entries
    • findByRepositoryId

      public static List<RepositoryEntry> findByRepositoryId(long repositoryId)
      Returns all the repository entries where repositoryId = ?.
      Parameters:
      repositoryId - the repository ID
      Returns:
      the matching repository entries
    • findByRepositoryId

      public static List<RepositoryEntry> findByRepositoryId(long repositoryId, int start, int end)
      Returns a range of all the repository entries where repositoryId = ?.

      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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RepositoryEntryModelImpl.

      Parameters:
      repositoryId - the repository ID
      start - the lower bound of the range of repository entries
      end - the upper bound of the range of repository entries (not inclusive)
      Returns:
      the range of matching repository entries
    • findByRepositoryId

      public static List<RepositoryEntry> findByRepositoryId(long repositoryId, int start, int end, OrderByComparator<RepositoryEntry> orderByComparator)
      Returns an ordered range of all the repository entries where repositoryId = ?.

      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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RepositoryEntryModelImpl.

      Parameters:
      repositoryId - the repository ID
      start - the lower bound of the range of repository entries
      end - the upper bound of the range of repository entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching repository entries
    • findByRepositoryId

      public static List<RepositoryEntry> findByRepositoryId(long repositoryId, int start, int end, OrderByComparator<RepositoryEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the repository entries where repositoryId = ?.

      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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RepositoryEntryModelImpl.

      Parameters:
      repositoryId - the repository ID
      start - the lower bound of the range of repository entries
      end - the upper bound of the range of repository entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching repository entries
    • findByRepositoryId_First

      public static RepositoryEntry findByRepositoryId_First(long repositoryId, OrderByComparator<RepositoryEntry> orderByComparator) throws NoSuchRepositoryEntryException
      Returns the first repository entry in the ordered set where repositoryId = ?.
      Parameters:
      repositoryId - the repository ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching repository entry
      Throws:
      NoSuchRepositoryEntryException - if a matching repository entry could not be found
      NoSuchRepositoryEntryException
    • fetchByRepositoryId_First

      public static RepositoryEntry fetchByRepositoryId_First(long repositoryId, OrderByComparator<RepositoryEntry> orderByComparator)
      Returns the first repository entry in the ordered set where repositoryId = ?.
      Parameters:
      repositoryId - the repository ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching repository entry, or null if a matching repository entry could not be found
    • findByRepositoryId_Last

      public static RepositoryEntry findByRepositoryId_Last(long repositoryId, OrderByComparator<RepositoryEntry> orderByComparator) throws NoSuchRepositoryEntryException
      Returns the last repository entry in the ordered set where repositoryId = ?.
      Parameters:
      repositoryId - the repository ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching repository entry
      Throws:
      NoSuchRepositoryEntryException - if a matching repository entry could not be found
      NoSuchRepositoryEntryException
    • fetchByRepositoryId_Last

      public static RepositoryEntry fetchByRepositoryId_Last(long repositoryId, OrderByComparator<RepositoryEntry> orderByComparator)
      Returns the last repository entry in the ordered set where repositoryId = ?.
      Parameters:
      repositoryId - the repository ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching repository entry, or null if a matching repository entry could not be found
    • findByRepositoryId_PrevAndNext

      public static RepositoryEntry[] findByRepositoryId_PrevAndNext(long repositoryEntryId, long repositoryId, OrderByComparator<RepositoryEntry> orderByComparator) throws NoSuchRepositoryEntryException
      Returns the repository entries before and after the current repository entry in the ordered set where repositoryId = ?.
      Parameters:
      repositoryEntryId - the primary key of the current repository entry
      repositoryId - the repository ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next repository entry
      Throws:
      NoSuchRepositoryEntryException - if a repository entry with the primary key could not be found
      NoSuchRepositoryEntryException
    • removeByRepositoryId

      public static void removeByRepositoryId(long repositoryId)
      Removes all the repository entries where repositoryId = ? from the database.
      Parameters:
      repositoryId - the repository ID
    • countByRepositoryId

      public static int countByRepositoryId(long repositoryId)
      Returns the number of repository entries where repositoryId = ?.
      Parameters:
      repositoryId - the repository ID
      Returns:
      the number of matching repository entries
    • findByR_M

      public static RepositoryEntry findByR_M(long repositoryId, String mappedId) throws NoSuchRepositoryEntryException
      Returns the repository entry where repositoryId = ? and mappedId = ? or throws a NoSuchRepositoryEntryException if it could not be found.
      Parameters:
      repositoryId - the repository ID
      mappedId - the mapped ID
      Returns:
      the matching repository entry
      Throws:
      NoSuchRepositoryEntryException - if a matching repository entry could not be found
      NoSuchRepositoryEntryException
    • fetchByR_M

      public static RepositoryEntry fetchByR_M(long repositoryId, String mappedId)
      Returns the repository entry where repositoryId = ? and mappedId = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      repositoryId - the repository ID
      mappedId - the mapped ID
      Returns:
      the matching repository entry, or null if a matching repository entry could not be found
    • fetchByR_M

      public static RepositoryEntry fetchByR_M(long repositoryId, String mappedId, boolean useFinderCache)
      Returns the repository entry where repositoryId = ? and mappedId = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      repositoryId - the repository ID
      mappedId - the mapped ID
      useFinderCache - whether to use the finder cache
      Returns:
      the matching repository entry, or null if a matching repository entry could not be found
    • removeByR_M

      public static RepositoryEntry removeByR_M(long repositoryId, String mappedId) throws NoSuchRepositoryEntryException
      Removes the repository entry where repositoryId = ? and mappedId = ? from the database.
      Parameters:
      repositoryId - the repository ID
      mappedId - the mapped ID
      Returns:
      the repository entry that was removed
      Throws:
      NoSuchRepositoryEntryException
    • countByR_M

      public static int countByR_M(long repositoryId, String mappedId)
      Returns the number of repository entries where repositoryId = ? and mappedId = ?.
      Parameters:
      repositoryId - the repository ID
      mappedId - the mapped ID
      Returns:
      the number of matching repository entries
    • cacheResult

      public static void cacheResult(RepositoryEntry repositoryEntry)
      Caches the repository entry in the entity cache if it is enabled.
      Parameters:
      repositoryEntry - the repository entry
    • cacheResult

      public static void cacheResult(List<RepositoryEntry> repositoryEntries)
      Caches the repository entries in the entity cache if it is enabled.
      Parameters:
      repositoryEntries - the repository entries
    • create

      public static RepositoryEntry create(long repositoryEntryId)
      Creates a new repository entry with the primary key. Does not add the repository entry to the database.
      Parameters:
      repositoryEntryId - the primary key for the new repository entry
      Returns:
      the new repository entry
    • remove

      public static RepositoryEntry remove(long repositoryEntryId) throws NoSuchRepositoryEntryException
      Removes the repository entry with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      repositoryEntryId - the primary key of the repository entry
      Returns:
      the repository entry that was removed
      Throws:
      NoSuchRepositoryEntryException - if a repository entry with the primary key could not be found
      NoSuchRepositoryEntryException
    • updateImpl

      public static RepositoryEntry updateImpl(RepositoryEntry repositoryEntry)
    • findByPrimaryKey

      public static RepositoryEntry findByPrimaryKey(long repositoryEntryId) throws NoSuchRepositoryEntryException
      Returns the repository entry with the primary key or throws a NoSuchRepositoryEntryException if it could not be found.
      Parameters:
      repositoryEntryId - the primary key of the repository entry
      Returns:
      the repository entry
      Throws:
      NoSuchRepositoryEntryException - if a repository entry with the primary key could not be found
      NoSuchRepositoryEntryException
    • fetchByPrimaryKey

      public static RepositoryEntry fetchByPrimaryKey(long repositoryEntryId)
      Returns the repository entry with the primary key or returns null if it could not be found.
      Parameters:
      repositoryEntryId - the primary key of the repository entry
      Returns:
      the repository entry, or null if a repository entry with the primary key could not be found
    • findAll

      public static List<RepositoryEntry> findAll()
      Returns all the repository entries.
      Returns:
      the repository entries
    • findAll

      public static List<RepositoryEntry> findAll(int start, int end)
      Returns a range of all the repository entries.

      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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RepositoryEntryModelImpl.

      Parameters:
      start - the lower bound of the range of repository entries
      end - the upper bound of the range of repository entries (not inclusive)
      Returns:
      the range of repository entries
    • findAll

      public static List<RepositoryEntry> findAll(int start, int end, OrderByComparator<RepositoryEntry> orderByComparator)
      Returns an ordered range of all the repository entries.

      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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RepositoryEntryModelImpl.

      Parameters:
      start - the lower bound of the range of repository entries
      end - the upper bound of the range of repository entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of repository entries
    • findAll

      public static List<RepositoryEntry> findAll(int start, int end, OrderByComparator<RepositoryEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the repository entries.

      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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RepositoryEntryModelImpl.

      Parameters:
      start - the lower bound of the range of repository entries
      end - the upper bound of the range of repository entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of repository entries
    • removeAll

      public static void removeAll()
      Removes all the repository entries from the database.
    • countAll

      public static int countAll()
      Returns the number of repository entries.
      Returns:
      the number of repository entries
    • getPersistence

      public static RepositoryEntryPersistence getPersistence()
    • setPersistence

      public static void setPersistence(RepositoryEntryPersistence persistence)