Interface ExportImportConfigurationPersistence

All Superinterfaces:
BasePersistence<ExportImportConfiguration>

@ProviderType public interface ExportImportConfigurationPersistence extends BasePersistence<ExportImportConfiguration>
The persistence interface for the export import configuration service.

Caching information and settings can be found in portal.properties

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

    • findByGroupId

      List<ExportImportConfiguration> findByGroupId(long groupId)
      Returns all the export import configurations where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the matching export import configurations
    • findByGroupId

      List<ExportImportConfiguration> findByGroupId(long groupId, int start, int end)
      Returns a range of all the export import configurations where groupId = ?.

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

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of export import configurations
      end - the upper bound of the range of export import configurations (not inclusive)
      Returns:
      the range of matching export import configurations
    • findByGroupId

      List<ExportImportConfiguration> findByGroupId(long groupId, int start, int end, OrderByComparator<ExportImportConfiguration> orderByComparator)
      Returns an ordered range of all the export import configurations where groupId = ?.

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

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of export import configurations
      end - the upper bound of the range of export import configurations (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching export import configurations
    • findByGroupId

      List<ExportImportConfiguration> findByGroupId(long groupId, int start, int end, OrderByComparator<ExportImportConfiguration> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the export import configurations where groupId = ?.

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

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of export import configurations
      end - the upper bound of the range of export import configurations (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 configurations
    • findByGroupId_First

      ExportImportConfiguration findByGroupId_First(long groupId, OrderByComparator<ExportImportConfiguration> orderByComparator) throws NoSuchConfigurationException
      Returns the first export import configuration in the ordered set where groupId = ?.
      Parameters:
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching export import configuration
      Throws:
      NoSuchConfigurationException - if a matching export import configuration could not be found
    • fetchByGroupId_First

      ExportImportConfiguration fetchByGroupId_First(long groupId, OrderByComparator<ExportImportConfiguration> orderByComparator)
      Returns the first export import configuration in the ordered set where groupId = ?.
      Parameters:
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching export import configuration, or null if a matching export import configuration could not be found
    • findByGroupId_Last

      ExportImportConfiguration findByGroupId_Last(long groupId, OrderByComparator<ExportImportConfiguration> orderByComparator) throws NoSuchConfigurationException
      Returns the last export import configuration in the ordered set where groupId = ?.
      Parameters:
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching export import configuration
      Throws:
      NoSuchConfigurationException - if a matching export import configuration could not be found
    • fetchByGroupId_Last

      ExportImportConfiguration fetchByGroupId_Last(long groupId, OrderByComparator<ExportImportConfiguration> orderByComparator)
      Returns the last export import configuration in the ordered set where groupId = ?.
      Parameters:
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching export import configuration, or null if a matching export import configuration could not be found
    • findByGroupId_PrevAndNext

      ExportImportConfiguration[] findByGroupId_PrevAndNext(long exportImportConfigurationId, long groupId, OrderByComparator<ExportImportConfiguration> orderByComparator) throws NoSuchConfigurationException
      Returns the export import configurations before and after the current export import configuration in the ordered set where groupId = ?.
      Parameters:
      exportImportConfigurationId - the primary key of the current export import configuration
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next export import configuration
      Throws:
      NoSuchConfigurationException - if a export import configuration with the primary key could not be found
    • removeByGroupId

      void removeByGroupId(long groupId)
      Removes all the export import configurations where groupId = ? from the database.
      Parameters:
      groupId - the group ID
    • countByGroupId

      int countByGroupId(long groupId)
      Returns the number of export import configurations where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the number of matching export import configurations
    • findByCompanyId

      List<ExportImportConfiguration> findByCompanyId(long companyId)
      Returns all the export import configurations where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the matching export import configurations
    • findByCompanyId

      List<ExportImportConfiguration> findByCompanyId(long companyId, int start, int end)
      Returns a range of all the export import configurations where 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 ExportImportConfigurationModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of export import configurations
      end - the upper bound of the range of export import configurations (not inclusive)
      Returns:
      the range of matching export import configurations
    • findByCompanyId

      List<ExportImportConfiguration> findByCompanyId(long companyId, int start, int end, OrderByComparator<ExportImportConfiguration> orderByComparator)
      Returns an ordered range of all the export import configurations where 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 ExportImportConfigurationModelImpl.

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

      List<ExportImportConfiguration> findByCompanyId(long companyId, int start, int end, OrderByComparator<ExportImportConfiguration> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the export import configurations where 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 ExportImportConfigurationModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of export import configurations
      end - the upper bound of the range of export import configurations (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 configurations
    • findByCompanyId_First

      ExportImportConfiguration findByCompanyId_First(long companyId, OrderByComparator<ExportImportConfiguration> orderByComparator) throws NoSuchConfigurationException
      Returns the first export import configuration in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching export import configuration
      Throws:
      NoSuchConfigurationException - if a matching export import configuration could not be found
    • fetchByCompanyId_First

      ExportImportConfiguration fetchByCompanyId_First(long companyId, OrderByComparator<ExportImportConfiguration> orderByComparator)
      Returns the first export import configuration in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching export import configuration, or null if a matching export import configuration could not be found
    • findByCompanyId_Last

      ExportImportConfiguration findByCompanyId_Last(long companyId, OrderByComparator<ExportImportConfiguration> orderByComparator) throws NoSuchConfigurationException
      Returns the last export import configuration in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching export import configuration
      Throws:
      NoSuchConfigurationException - if a matching export import configuration could not be found
    • fetchByCompanyId_Last

      ExportImportConfiguration fetchByCompanyId_Last(long companyId, OrderByComparator<ExportImportConfiguration> orderByComparator)
      Returns the last export import configuration in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching export import configuration, or null if a matching export import configuration could not be found
    • findByCompanyId_PrevAndNext

      ExportImportConfiguration[] findByCompanyId_PrevAndNext(long exportImportConfigurationId, long companyId, OrderByComparator<ExportImportConfiguration> orderByComparator) throws NoSuchConfigurationException
      Returns the export import configurations before and after the current export import configuration in the ordered set where companyId = ?.
      Parameters:
      exportImportConfigurationId - the primary key of the current export import configuration
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next export import configuration
      Throws:
      NoSuchConfigurationException - if a export import configuration with the primary key could not be found
    • removeByCompanyId

      void removeByCompanyId(long companyId)
      Removes all the export import configurations where companyId = ? from the database.
      Parameters:
      companyId - the company ID
    • countByCompanyId

      int countByCompanyId(long companyId)
      Returns the number of export import configurations where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the number of matching export import configurations
    • findByG_T

      List<ExportImportConfiguration> findByG_T(long groupId, int type)
      Returns all the export import configurations where groupId = ? and type = ?.
      Parameters:
      groupId - the group ID
      type - the type
      Returns:
      the matching export import configurations
    • findByG_T

      List<ExportImportConfiguration> findByG_T(long groupId, int type, int start, int end)
      Returns a range of all the export import configurations where groupId = ? and type = ?.

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

      Parameters:
      groupId - the group ID
      type - the type
      start - the lower bound of the range of export import configurations
      end - the upper bound of the range of export import configurations (not inclusive)
      Returns:
      the range of matching export import configurations
    • findByG_T

      List<ExportImportConfiguration> findByG_T(long groupId, int type, int start, int end, OrderByComparator<ExportImportConfiguration> orderByComparator)
      Returns an ordered range of all the export import configurations where groupId = ? and type = ?.

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

      Parameters:
      groupId - the group ID
      type - the type
      start - the lower bound of the range of export import configurations
      end - the upper bound of the range of export import configurations (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching export import configurations
    • findByG_T

      List<ExportImportConfiguration> findByG_T(long groupId, int type, int start, int end, OrderByComparator<ExportImportConfiguration> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the export import configurations where groupId = ? and type = ?.

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

      Parameters:
      groupId - the group ID
      type - the type
      start - the lower bound of the range of export import configurations
      end - the upper bound of the range of export import configurations (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 configurations
    • findByG_T_First

      ExportImportConfiguration findByG_T_First(long groupId, int type, OrderByComparator<ExportImportConfiguration> orderByComparator) throws NoSuchConfigurationException
      Returns the first export import configuration in the ordered set where groupId = ? and type = ?.
      Parameters:
      groupId - the group ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching export import configuration
      Throws:
      NoSuchConfigurationException - if a matching export import configuration could not be found
    • fetchByG_T_First

      ExportImportConfiguration fetchByG_T_First(long groupId, int type, OrderByComparator<ExportImportConfiguration> orderByComparator)
      Returns the first export import configuration in the ordered set where groupId = ? and type = ?.
      Parameters:
      groupId - the group ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching export import configuration, or null if a matching export import configuration could not be found
    • findByG_T_Last

      ExportImportConfiguration findByG_T_Last(long groupId, int type, OrderByComparator<ExportImportConfiguration> orderByComparator) throws NoSuchConfigurationException
      Returns the last export import configuration in the ordered set where groupId = ? and type = ?.
      Parameters:
      groupId - the group ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching export import configuration
      Throws:
      NoSuchConfigurationException - if a matching export import configuration could not be found
    • fetchByG_T_Last

      ExportImportConfiguration fetchByG_T_Last(long groupId, int type, OrderByComparator<ExportImportConfiguration> orderByComparator)
      Returns the last export import configuration in the ordered set where groupId = ? and type = ?.
      Parameters:
      groupId - the group ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching export import configuration, or null if a matching export import configuration could not be found
    • findByG_T_PrevAndNext

      ExportImportConfiguration[] findByG_T_PrevAndNext(long exportImportConfigurationId, long groupId, int type, OrderByComparator<ExportImportConfiguration> orderByComparator) throws NoSuchConfigurationException
      Returns the export import configurations before and after the current export import configuration in the ordered set where groupId = ? and type = ?.
      Parameters:
      exportImportConfigurationId - the primary key of the current export import configuration
      groupId - the group ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next export import configuration
      Throws:
      NoSuchConfigurationException - if a export import configuration with the primary key could not be found
    • removeByG_T

      void removeByG_T(long groupId, int type)
      Removes all the export import configurations where groupId = ? and type = ? from the database.
      Parameters:
      groupId - the group ID
      type - the type
    • countByG_T

      int countByG_T(long groupId, int type)
      Returns the number of export import configurations where groupId = ? and type = ?.
      Parameters:
      groupId - the group ID
      type - the type
      Returns:
      the number of matching export import configurations
    • findByG_S

      List<ExportImportConfiguration> findByG_S(long groupId, int status)
      Returns all the export import configurations where groupId = ? and status = ?.
      Parameters:
      groupId - the group ID
      status - the status
      Returns:
      the matching export import configurations
    • findByG_S

      List<ExportImportConfiguration> findByG_S(long groupId, int status, int start, int end)
      Returns a range of all the export import configurations where groupId = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      status - the status
      start - the lower bound of the range of export import configurations
      end - the upper bound of the range of export import configurations (not inclusive)
      Returns:
      the range of matching export import configurations
    • findByG_S

      List<ExportImportConfiguration> findByG_S(long groupId, int status, int start, int end, OrderByComparator<ExportImportConfiguration> orderByComparator)
      Returns an ordered range of all the export import configurations where groupId = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      status - the status
      start - the lower bound of the range of export import configurations
      end - the upper bound of the range of export import configurations (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching export import configurations
    • findByG_S

      List<ExportImportConfiguration> findByG_S(long groupId, int status, int start, int end, OrderByComparator<ExportImportConfiguration> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the export import configurations where groupId = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      status - the status
      start - the lower bound of the range of export import configurations
      end - the upper bound of the range of export import configurations (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 configurations
    • findByG_S_First

      ExportImportConfiguration findByG_S_First(long groupId, int status, OrderByComparator<ExportImportConfiguration> orderByComparator) throws NoSuchConfigurationException
      Returns the first export import configuration in the ordered set where groupId = ? and status = ?.
      Parameters:
      groupId - the group ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching export import configuration
      Throws:
      NoSuchConfigurationException - if a matching export import configuration could not be found
    • fetchByG_S_First

      ExportImportConfiguration fetchByG_S_First(long groupId, int status, OrderByComparator<ExportImportConfiguration> orderByComparator)
      Returns the first export import configuration in the ordered set where groupId = ? and status = ?.
      Parameters:
      groupId - the group ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching export import configuration, or null if a matching export import configuration could not be found
    • findByG_S_Last

      ExportImportConfiguration findByG_S_Last(long groupId, int status, OrderByComparator<ExportImportConfiguration> orderByComparator) throws NoSuchConfigurationException
      Returns the last export import configuration in the ordered set where groupId = ? and status = ?.
      Parameters:
      groupId - the group ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching export import configuration
      Throws:
      NoSuchConfigurationException - if a matching export import configuration could not be found
    • fetchByG_S_Last

      ExportImportConfiguration fetchByG_S_Last(long groupId, int status, OrderByComparator<ExportImportConfiguration> orderByComparator)
      Returns the last export import configuration in the ordered set where groupId = ? and status = ?.
      Parameters:
      groupId - the group ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching export import configuration, or null if a matching export import configuration could not be found
    • findByG_S_PrevAndNext

      ExportImportConfiguration[] findByG_S_PrevAndNext(long exportImportConfigurationId, long groupId, int status, OrderByComparator<ExportImportConfiguration> orderByComparator) throws NoSuchConfigurationException
      Returns the export import configurations before and after the current export import configuration in the ordered set where groupId = ? and status = ?.
      Parameters:
      exportImportConfigurationId - the primary key of the current export import configuration
      groupId - the group ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next export import configuration
      Throws:
      NoSuchConfigurationException - if a export import configuration with the primary key could not be found
    • removeByG_S

      void removeByG_S(long groupId, int status)
      Removes all the export import configurations where groupId = ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      status - the status
    • countByG_S

      int countByG_S(long groupId, int status)
      Returns the number of export import configurations where groupId = ? and status = ?.
      Parameters:
      groupId - the group ID
      status - the status
      Returns:
      the number of matching export import configurations
    • findByG_T_S

      List<ExportImportConfiguration> findByG_T_S(long groupId, int type, int status)
      Returns all the export import configurations where groupId = ? and type = ? and status = ?.
      Parameters:
      groupId - the group ID
      type - the type
      status - the status
      Returns:
      the matching export import configurations
    • findByG_T_S

      List<ExportImportConfiguration> findByG_T_S(long groupId, int type, int status, int start, int end)
      Returns a range of all the export import configurations where groupId = ? and type = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      type - the type
      status - the status
      start - the lower bound of the range of export import configurations
      end - the upper bound of the range of export import configurations (not inclusive)
      Returns:
      the range of matching export import configurations
    • findByG_T_S

      List<ExportImportConfiguration> findByG_T_S(long groupId, int type, int status, int start, int end, OrderByComparator<ExportImportConfiguration> orderByComparator)
      Returns an ordered range of all the export import configurations where groupId = ? and type = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      type - the type
      status - the status
      start - the lower bound of the range of export import configurations
      end - the upper bound of the range of export import configurations (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching export import configurations
    • findByG_T_S

      List<ExportImportConfiguration> findByG_T_S(long groupId, int type, int status, int start, int end, OrderByComparator<ExportImportConfiguration> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the export import configurations where groupId = ? and type = ? and status = ?.

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

      Parameters:
      groupId - the group ID
      type - the type
      status - the status
      start - the lower bound of the range of export import configurations
      end - the upper bound of the range of export import configurations (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 configurations
    • findByG_T_S_First

      ExportImportConfiguration findByG_T_S_First(long groupId, int type, int status, OrderByComparator<ExportImportConfiguration> orderByComparator) throws NoSuchConfigurationException
      Returns the first export import configuration in the ordered set where groupId = ? and type = ? and status = ?.
      Parameters:
      groupId - the group ID
      type - the type
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching export import configuration
      Throws:
      NoSuchConfigurationException - if a matching export import configuration could not be found
    • fetchByG_T_S_First

      ExportImportConfiguration fetchByG_T_S_First(long groupId, int type, int status, OrderByComparator<ExportImportConfiguration> orderByComparator)
      Returns the first export import configuration in the ordered set where groupId = ? and type = ? and status = ?.
      Parameters:
      groupId - the group ID
      type - the type
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching export import configuration, or null if a matching export import configuration could not be found
    • findByG_T_S_Last

      ExportImportConfiguration findByG_T_S_Last(long groupId, int type, int status, OrderByComparator<ExportImportConfiguration> orderByComparator) throws NoSuchConfigurationException
      Returns the last export import configuration in the ordered set where groupId = ? and type = ? and status = ?.
      Parameters:
      groupId - the group ID
      type - the type
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching export import configuration
      Throws:
      NoSuchConfigurationException - if a matching export import configuration could not be found
    • fetchByG_T_S_Last

      ExportImportConfiguration fetchByG_T_S_Last(long groupId, int type, int status, OrderByComparator<ExportImportConfiguration> orderByComparator)
      Returns the last export import configuration in the ordered set where groupId = ? and type = ? and status = ?.
      Parameters:
      groupId - the group ID
      type - the type
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching export import configuration, or null if a matching export import configuration could not be found
    • findByG_T_S_PrevAndNext

      ExportImportConfiguration[] findByG_T_S_PrevAndNext(long exportImportConfigurationId, long groupId, int type, int status, OrderByComparator<ExportImportConfiguration> orderByComparator) throws NoSuchConfigurationException
      Returns the export import configurations before and after the current export import configuration in the ordered set where groupId = ? and type = ? and status = ?.
      Parameters:
      exportImportConfigurationId - the primary key of the current export import configuration
      groupId - the group ID
      type - the type
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next export import configuration
      Throws:
      NoSuchConfigurationException - if a export import configuration with the primary key could not be found
    • removeByG_T_S

      void removeByG_T_S(long groupId, int type, int status)
      Removes all the export import configurations where groupId = ? and type = ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      type - the type
      status - the status
    • countByG_T_S

      int countByG_T_S(long groupId, int type, int status)
      Returns the number of export import configurations where groupId = ? and type = ? and status = ?.
      Parameters:
      groupId - the group ID
      type - the type
      status - the status
      Returns:
      the number of matching export import configurations
    • cacheResult

      void cacheResult(ExportImportConfiguration exportImportConfiguration)
      Caches the export import configuration in the entity cache if it is enabled.
      Parameters:
      exportImportConfiguration - the export import configuration
    • cacheResult

      void cacheResult(List<ExportImportConfiguration> exportImportConfigurations)
      Caches the export import configurations in the entity cache if it is enabled.
      Parameters:
      exportImportConfigurations - the export import configurations
    • create

      ExportImportConfiguration create(long exportImportConfigurationId)
      Creates a new export import configuration with the primary key. Does not add the export import configuration to the database.
      Parameters:
      exportImportConfigurationId - the primary key for the new export import configuration
      Returns:
      the new export import configuration
    • remove

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

      ExportImportConfiguration updateImpl(ExportImportConfiguration exportImportConfiguration)
    • findByPrimaryKey

      ExportImportConfiguration findByPrimaryKey(long exportImportConfigurationId) throws NoSuchConfigurationException
      Returns the export import configuration with the primary key or throws a NoSuchConfigurationException if it could not be found.
      Parameters:
      exportImportConfigurationId - the primary key of the export import configuration
      Returns:
      the export import configuration
      Throws:
      NoSuchConfigurationException - if a export import configuration with the primary key could not be found
    • fetchByPrimaryKey

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

      Returns all the export import configurations.
      Returns:
      the export import configurations
    • findAll

      List<ExportImportConfiguration> findAll(int start, int end)
      Returns a range of all the export import configurations.

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

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

      List<ExportImportConfiguration> findAll(int start, int end, OrderByComparator<ExportImportConfiguration> orderByComparator)
      Returns an ordered range of all the export import configurations.

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

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

      List<ExportImportConfiguration> findAll(int start, int end, OrderByComparator<ExportImportConfiguration> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the export import configurations.

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

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

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

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