Interface ExportImportReportEntryPersistence

All Superinterfaces:
com.liferay.portal.kernel.service.persistence.BasePersistence<ExportImportReportEntry>

@ProviderType public interface ExportImportReportEntryPersistence extends com.liferay.portal.kernel.service.persistence.BasePersistence<ExportImportReportEntry>
The persistence interface for the export import report entry service.

Caching information and settings can be found in portal.properties

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    cacheResult(ExportImportReportEntry exportImportReportEntry)
    Caches the export import report entry in the entity cache if it is enabled.
    void
    cacheResult(List<ExportImportReportEntry> exportImportReportEntries)
    Caches the export import report entries in the entity cache if it is enabled.
    int
    Returns the number of export import report entries.
    int
    countByC_E(long companyId, long exportImportConfigurationId)
    Returns the number of export import report entries where companyId = ? and exportImportConfigurationId = ?.
    create(long exportImportReportEntryId)
    Creates a new export import report entry with the primary key.
    fetchByC_E_First(long companyId, long exportImportConfigurationId, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator)
    Returns the first export import report entry in the ordered set where companyId = ? and exportImportConfigurationId = ?.
    fetchByC_E_Last(long companyId, long exportImportConfigurationId, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator)
    Returns the last export import report entry in the ordered set where companyId = ? and exportImportConfigurationId = ?.
    fetchByPrimaryKey(long exportImportReportEntryId)
    Returns the export import report entry with the primary key or returns null if it could not be found.
    Returns all the export import report entries.
    findAll(int start, int end)
    Returns a range of all the export import report entries.
    findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator)
    Returns an ordered range of all the export import report entries.
    findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the export import report entries.
    findByC_E(long companyId, long exportImportConfigurationId)
    Returns all the export import report entries where companyId = ? and exportImportConfigurationId = ?.
    findByC_E(long companyId, long exportImportConfigurationId, int start, int end)
    Returns a range of all the export import report entries where companyId = ? and exportImportConfigurationId = ?.
    findByC_E(long companyId, long exportImportConfigurationId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator)
    Returns an ordered range of all the export import report entries where companyId = ? and exportImportConfigurationId = ?.
    findByC_E(long companyId, long exportImportConfigurationId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the export import report entries where companyId = ? and exportImportConfigurationId = ?.
    findByC_E_First(long companyId, long exportImportConfigurationId, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator)
    Returns the first export import report entry in the ordered set where companyId = ? and exportImportConfigurationId = ?.
    findByC_E_Last(long companyId, long exportImportConfigurationId, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator)
    Returns the last export import report entry in the ordered set where companyId = ? and exportImportConfigurationId = ?.
    findByC_E_PrevAndNext(long exportImportReportEntryId, long companyId, long exportImportConfigurationId, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator)
    Returns the export import report entries before and after the current export import report entry in the ordered set where companyId = ? and exportImportConfigurationId = ?.
    findByPrimaryKey(long exportImportReportEntryId)
    Returns the export import report entry with the primary key or throws a NoSuchExportImportReportEntryException if it could not be found.
    remove(long exportImportReportEntryId)
    Removes the export import report entry with the primary key from the database.
    void
    Removes all the export import report entries from the database.
    void
    removeByC_E(long companyId, long exportImportConfigurationId)
    Removes all the export import report entries where companyId = ? and exportImportConfigurationId = ? from the database.
    updateImpl(ExportImportReportEntry exportImportReportEntry)
     

    Methods inherited from interface com.liferay.portal.kernel.service.persistence.BasePersistence

    clearCache, clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, dslQuery, dslQueryCount, fetchByPrimaryKey, fetchByPrimaryKeys, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getBadColumnNames, getCurrentSession, getDataSource, getDB, getDialect, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, removeByFunction, setDataSource, unregisterListener, update, update
  • Method Details

    • findByC_E

      List<ExportImportReportEntry> findByC_E(long companyId, long exportImportConfigurationId)
      Returns all the export import report entries where companyId = ? and exportImportConfigurationId = ?.
      Parameters:
      companyId - the company ID
      exportImportConfigurationId - the export import configuration ID
      Returns:
      the matching export import report entries
    • findByC_E

      List<ExportImportReportEntry> findByC_E(long companyId, long exportImportConfigurationId, int start, int end)
      Returns a range of all the export import report entries where companyId = ? and exportImportConfigurationId = ?.

      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 ExportImportReportEntryModelImpl.

      Parameters:
      companyId - the company ID
      exportImportConfigurationId - the export import configuration ID
      start - the lower bound of the range of export import report entries
      end - the upper bound of the range of export import report entries (not inclusive)
      Returns:
      the range of matching export import report entries
    • findByC_E

      List<ExportImportReportEntry> findByC_E(long companyId, long exportImportConfigurationId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator)
      Returns an ordered range of all the export import report entries where companyId = ? and exportImportConfigurationId = ?.

      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 ExportImportReportEntryModelImpl.

      Parameters:
      companyId - the company ID
      exportImportConfigurationId - the export import configuration ID
      start - the lower bound of the range of export import report entries
      end - the upper bound of the range of export import report entries (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching export import report entries
    • findByC_E

      List<ExportImportReportEntry> findByC_E(long companyId, long exportImportConfigurationId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the export import report entries where companyId = ? and exportImportConfigurationId = ?.

      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 ExportImportReportEntryModelImpl.

      Parameters:
      companyId - the company ID
      exportImportConfigurationId - the export import configuration ID
      start - the lower bound of the range of export import report entries
      end - the upper bound of the range of export import report 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 export import report entries
    • findByC_E_First

      ExportImportReportEntry findByC_E_First(long companyId, long exportImportConfigurationId, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator) throws NoSuchExportImportReportEntryException
      Returns the first export import report entry in the ordered set where companyId = ? and exportImportConfigurationId = ?.
      Parameters:
      companyId - the company ID
      exportImportConfigurationId - the export import configuration ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching export import report entry
      Throws:
      NoSuchExportImportReportEntryException - if a matching export import report entry could not be found
    • fetchByC_E_First

      ExportImportReportEntry fetchByC_E_First(long companyId, long exportImportConfigurationId, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator)
      Returns the first export import report entry in the ordered set where companyId = ? and exportImportConfigurationId = ?.
      Parameters:
      companyId - the company ID
      exportImportConfigurationId - the export import configuration ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching export import report entry, or null if a matching export import report entry could not be found
    • findByC_E_Last

      ExportImportReportEntry findByC_E_Last(long companyId, long exportImportConfigurationId, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator) throws NoSuchExportImportReportEntryException
      Returns the last export import report entry in the ordered set where companyId = ? and exportImportConfigurationId = ?.
      Parameters:
      companyId - the company ID
      exportImportConfigurationId - the export import configuration ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching export import report entry
      Throws:
      NoSuchExportImportReportEntryException - if a matching export import report entry could not be found
    • fetchByC_E_Last

      ExportImportReportEntry fetchByC_E_Last(long companyId, long exportImportConfigurationId, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator)
      Returns the last export import report entry in the ordered set where companyId = ? and exportImportConfigurationId = ?.
      Parameters:
      companyId - the company ID
      exportImportConfigurationId - the export import configuration ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching export import report entry, or null if a matching export import report entry could not be found
    • findByC_E_PrevAndNext

      ExportImportReportEntry[] findByC_E_PrevAndNext(long exportImportReportEntryId, long companyId, long exportImportConfigurationId, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator) throws NoSuchExportImportReportEntryException
      Returns the export import report entries before and after the current export import report entry in the ordered set where companyId = ? and exportImportConfigurationId = ?.
      Parameters:
      exportImportReportEntryId - the primary key of the current export import report entry
      companyId - the company ID
      exportImportConfigurationId - the export import configuration ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next export import report entry
      Throws:
      NoSuchExportImportReportEntryException - if a export import report entry with the primary key could not be found
    • removeByC_E

      void removeByC_E(long companyId, long exportImportConfigurationId)
      Removes all the export import report entries where companyId = ? and exportImportConfigurationId = ? from the database.
      Parameters:
      companyId - the company ID
      exportImportConfigurationId - the export import configuration ID
    • countByC_E

      int countByC_E(long companyId, long exportImportConfigurationId)
      Returns the number of export import report entries where companyId = ? and exportImportConfigurationId = ?.
      Parameters:
      companyId - the company ID
      exportImportConfigurationId - the export import configuration ID
      Returns:
      the number of matching export import report entries
    • cacheResult

      void cacheResult(ExportImportReportEntry exportImportReportEntry)
      Caches the export import report entry in the entity cache if it is enabled.
      Parameters:
      exportImportReportEntry - the export import report entry
    • cacheResult

      void cacheResult(List<ExportImportReportEntry> exportImportReportEntries)
      Caches the export import report entries in the entity cache if it is enabled.
      Parameters:
      exportImportReportEntries - the export import report entries
    • create

      ExportImportReportEntry create(long exportImportReportEntryId)
      Creates a new export import report entry with the primary key. Does not add the export import report entry to the database.
      Parameters:
      exportImportReportEntryId - the primary key for the new export import report entry
      Returns:
      the new export import report entry
    • remove

      ExportImportReportEntry remove(long exportImportReportEntryId) throws NoSuchExportImportReportEntryException
      Removes the export import report entry with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      exportImportReportEntryId - the primary key of the export import report entry
      Returns:
      the export import report entry that was removed
      Throws:
      NoSuchExportImportReportEntryException - if a export import report entry with the primary key could not be found
    • updateImpl

      ExportImportReportEntry updateImpl(ExportImportReportEntry exportImportReportEntry)
    • findByPrimaryKey

      ExportImportReportEntry findByPrimaryKey(long exportImportReportEntryId) throws NoSuchExportImportReportEntryException
      Returns the export import report entry with the primary key or throws a NoSuchExportImportReportEntryException if it could not be found.
      Parameters:
      exportImportReportEntryId - the primary key of the export import report entry
      Returns:
      the export import report entry
      Throws:
      NoSuchExportImportReportEntryException - if a export import report entry with the primary key could not be found
    • fetchByPrimaryKey

      ExportImportReportEntry fetchByPrimaryKey(long exportImportReportEntryId)
      Returns the export import report entry with the primary key or returns null if it could not be found.
      Parameters:
      exportImportReportEntryId - the primary key of the export import report entry
      Returns:
      the export import report entry, or null if a export import report entry with the primary key could not be found
    • findAll

      Returns all the export import report entries.
      Returns:
      the export import report entries
    • findAll

      List<ExportImportReportEntry> findAll(int start, int end)
      Returns a range of all the export import report 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 ExportImportReportEntryModelImpl.

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

      List<ExportImportReportEntry> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator)
      Returns an ordered range of all the export import report 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 ExportImportReportEntryModelImpl.

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

      List<ExportImportReportEntry> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<ExportImportReportEntry> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the export import report 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 ExportImportReportEntryModelImpl.

      Parameters:
      start - the lower bound of the range of export import report entries
      end - the upper bound of the range of export import report 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 export import report entries
    • removeAll

      void removeAll()
      Removes all the export import report entries from the database.
    • countAll

      int countAll()
      Returns the number of export import report entries.
      Returns:
      the number of export import report entries