Interface BatchEngineImportTaskErrorPersistence
- All Superinterfaces:
com.liferay.portal.kernel.service.persistence.BasePersistence<BatchEngineImportTaskError>
Caching information and settings can be found in portal.properties
- See Also:
- Generated:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
cacheResult
(BatchEngineImportTaskError batchEngineImportTaskError) Caches the batch engine import task error in the entity cache if it is enabled.void
cacheResult
(List<BatchEngineImportTaskError> batchEngineImportTaskErrors) Caches the batch engine import task errors in the entity cache if it is enabled.int
countAll()
Returns the number of batch engine import task errors.int
countByBatchEngineImportTaskId
(long batchEngineImportTaskId) Returns the number of batch engine import task errors where batchEngineImportTaskId = ?.create
(long batchEngineImportTaskErrorId) Creates a new batch engine import task error with the primary key.fetchByBatchEngineImportTaskId_First
(long batchEngineImportTaskId, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator) Returns the first batch engine import task error in the ordered set where batchEngineImportTaskId = ?.fetchByBatchEngineImportTaskId_Last
(long batchEngineImportTaskId, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator) Returns the last batch engine import task error in the ordered set where batchEngineImportTaskId = ?.fetchByPrimaryKey
(long batchEngineImportTaskErrorId) Returns the batch engine import task error with the primary key or returnsnull
if it could not be found.findAll()
Returns all the batch engine import task errors.findAll
(int start, int end) Returns a range of all the batch engine import task errors.findAll
(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator) Returns an ordered range of all the batch engine import task errors.findAll
(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator, boolean useFinderCache) Returns an ordered range of all the batch engine import task errors.findByBatchEngineImportTaskId
(long batchEngineImportTaskId) Returns all the batch engine import task errors where batchEngineImportTaskId = ?.findByBatchEngineImportTaskId
(long batchEngineImportTaskId, int start, int end) Returns a range of all the batch engine import task errors where batchEngineImportTaskId = ?.findByBatchEngineImportTaskId
(long batchEngineImportTaskId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator) Returns an ordered range of all the batch engine import task errors where batchEngineImportTaskId = ?.findByBatchEngineImportTaskId
(long batchEngineImportTaskId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator, boolean useFinderCache) Returns an ordered range of all the batch engine import task errors where batchEngineImportTaskId = ?.findByBatchEngineImportTaskId_First
(long batchEngineImportTaskId, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator) Returns the first batch engine import task error in the ordered set where batchEngineImportTaskId = ?.findByBatchEngineImportTaskId_Last
(long batchEngineImportTaskId, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator) Returns the last batch engine import task error in the ordered set where batchEngineImportTaskId = ?.findByBatchEngineImportTaskId_PrevAndNext
(long batchEngineImportTaskErrorId, long batchEngineImportTaskId, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator) Returns the batch engine import task errors before and after the current batch engine import task error in the ordered set where batchEngineImportTaskId = ?.findByPrimaryKey
(long batchEngineImportTaskErrorId) Returns the batch engine import task error with the primary key or throws aNoSuchImportTaskErrorException
if it could not be found.remove
(long batchEngineImportTaskErrorId) Removes the batch engine import task error with the primary key from the database.void
Removes all the batch engine import task errors from the database.void
removeByBatchEngineImportTaskId
(long batchEngineImportTaskId) Removes all the batch engine import task errors where batchEngineImportTaskId = ? from the database.updateImpl
(BatchEngineImportTaskError batchEngineImportTaskError) 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
-
findByBatchEngineImportTaskId
Returns all the batch engine import task errors where batchEngineImportTaskId = ?.- Parameters:
batchEngineImportTaskId
- the batch engine import task ID- Returns:
- the matching batch engine import task errors
-
findByBatchEngineImportTaskId
List<BatchEngineImportTaskError> findByBatchEngineImportTaskId(long batchEngineImportTaskId, int start, int end) Returns a range of all the batch engine import task errors where batchEngineImportTaskId = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromBatchEngineImportTaskErrorModelImpl
.- Parameters:
batchEngineImportTaskId
- the batch engine import task IDstart
- the lower bound of the range of batch engine import task errorsend
- the upper bound of the range of batch engine import task errors (not inclusive)- Returns:
- the range of matching batch engine import task errors
-
findByBatchEngineImportTaskId
List<BatchEngineImportTaskError> findByBatchEngineImportTaskId(long batchEngineImportTaskId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator) Returns an ordered range of all the batch engine import task errors where batchEngineImportTaskId = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromBatchEngineImportTaskErrorModelImpl
.- Parameters:
batchEngineImportTaskId
- the batch engine import task IDstart
- the lower bound of the range of batch engine import task errorsend
- the upper bound of the range of batch engine import task errors (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching batch engine import task errors
-
findByBatchEngineImportTaskId
List<BatchEngineImportTaskError> findByBatchEngineImportTaskId(long batchEngineImportTaskId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator, boolean useFinderCache) Returns an ordered range of all the batch engine import task errors where batchEngineImportTaskId = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromBatchEngineImportTaskErrorModelImpl
.- Parameters:
batchEngineImportTaskId
- the batch engine import task IDstart
- the lower bound of the range of batch engine import task errorsend
- the upper bound of the range of batch engine import task errors (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of matching batch engine import task errors
-
findByBatchEngineImportTaskId_First
BatchEngineImportTaskError findByBatchEngineImportTaskId_First(long batchEngineImportTaskId, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator) throws NoSuchImportTaskErrorException Returns the first batch engine import task error in the ordered set where batchEngineImportTaskId = ?.- Parameters:
batchEngineImportTaskId
- the batch engine import task IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching batch engine import task error
- Throws:
NoSuchImportTaskErrorException
- if a matching batch engine import task error could not be found
-
fetchByBatchEngineImportTaskId_First
BatchEngineImportTaskError fetchByBatchEngineImportTaskId_First(long batchEngineImportTaskId, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator) Returns the first batch engine import task error in the ordered set where batchEngineImportTaskId = ?.- Parameters:
batchEngineImportTaskId
- the batch engine import task IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching batch engine import task error, or
null
if a matching batch engine import task error could not be found
-
findByBatchEngineImportTaskId_Last
BatchEngineImportTaskError findByBatchEngineImportTaskId_Last(long batchEngineImportTaskId, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator) throws NoSuchImportTaskErrorException Returns the last batch engine import task error in the ordered set where batchEngineImportTaskId = ?.- Parameters:
batchEngineImportTaskId
- the batch engine import task IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching batch engine import task error
- Throws:
NoSuchImportTaskErrorException
- if a matching batch engine import task error could not be found
-
fetchByBatchEngineImportTaskId_Last
BatchEngineImportTaskError fetchByBatchEngineImportTaskId_Last(long batchEngineImportTaskId, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator) Returns the last batch engine import task error in the ordered set where batchEngineImportTaskId = ?.- Parameters:
batchEngineImportTaskId
- the batch engine import task IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching batch engine import task error, or
null
if a matching batch engine import task error could not be found
-
findByBatchEngineImportTaskId_PrevAndNext
BatchEngineImportTaskError[] findByBatchEngineImportTaskId_PrevAndNext(long batchEngineImportTaskErrorId, long batchEngineImportTaskId, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator) throws NoSuchImportTaskErrorException Returns the batch engine import task errors before and after the current batch engine import task error in the ordered set where batchEngineImportTaskId = ?.- Parameters:
batchEngineImportTaskErrorId
- the primary key of the current batch engine import task errorbatchEngineImportTaskId
- the batch engine import task IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next batch engine import task error
- Throws:
NoSuchImportTaskErrorException
- if a batch engine import task error with the primary key could not be found
-
removeByBatchEngineImportTaskId
void removeByBatchEngineImportTaskId(long batchEngineImportTaskId) Removes all the batch engine import task errors where batchEngineImportTaskId = ? from the database.- Parameters:
batchEngineImportTaskId
- the batch engine import task ID
-
countByBatchEngineImportTaskId
int countByBatchEngineImportTaskId(long batchEngineImportTaskId) Returns the number of batch engine import task errors where batchEngineImportTaskId = ?.- Parameters:
batchEngineImportTaskId
- the batch engine import task ID- Returns:
- the number of matching batch engine import task errors
-
cacheResult
Caches the batch engine import task error in the entity cache if it is enabled.- Parameters:
batchEngineImportTaskError
- the batch engine import task error
-
cacheResult
Caches the batch engine import task errors in the entity cache if it is enabled.- Parameters:
batchEngineImportTaskErrors
- the batch engine import task errors
-
create
Creates a new batch engine import task error with the primary key. Does not add the batch engine import task error to the database.- Parameters:
batchEngineImportTaskErrorId
- the primary key for the new batch engine import task error- Returns:
- the new batch engine import task error
-
remove
BatchEngineImportTaskError remove(long batchEngineImportTaskErrorId) throws NoSuchImportTaskErrorException Removes the batch engine import task error with the primary key from the database. Also notifies the appropriate model listeners.- Parameters:
batchEngineImportTaskErrorId
- the primary key of the batch engine import task error- Returns:
- the batch engine import task error that was removed
- Throws:
NoSuchImportTaskErrorException
- if a batch engine import task error with the primary key could not be found
-
updateImpl
-
findByPrimaryKey
BatchEngineImportTaskError findByPrimaryKey(long batchEngineImportTaskErrorId) throws NoSuchImportTaskErrorException Returns the batch engine import task error with the primary key or throws aNoSuchImportTaskErrorException
if it could not be found.- Parameters:
batchEngineImportTaskErrorId
- the primary key of the batch engine import task error- Returns:
- the batch engine import task error
- Throws:
NoSuchImportTaskErrorException
- if a batch engine import task error with the primary key could not be found
-
fetchByPrimaryKey
Returns the batch engine import task error with the primary key or returnsnull
if it could not be found.- Parameters:
batchEngineImportTaskErrorId
- the primary key of the batch engine import task error- Returns:
- the batch engine import task error, or
null
if a batch engine import task error with the primary key could not be found
-
findAll
List<BatchEngineImportTaskError> findAll()Returns all the batch engine import task errors.- Returns:
- the batch engine import task errors
-
findAll
Returns a range of all the batch engine import task errors.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromBatchEngineImportTaskErrorModelImpl
.- Parameters:
start
- the lower bound of the range of batch engine import task errorsend
- the upper bound of the range of batch engine import task errors (not inclusive)- Returns:
- the range of batch engine import task errors
-
findAll
List<BatchEngineImportTaskError> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator) Returns an ordered range of all the batch engine import task errors.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromBatchEngineImportTaskErrorModelImpl
.- Parameters:
start
- the lower bound of the range of batch engine import task errorsend
- the upper bound of the range of batch engine import task errors (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of batch engine import task errors
-
findAll
List<BatchEngineImportTaskError> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator, boolean useFinderCache) Returns an ordered range of all the batch engine import task errors.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromBatchEngineImportTaskErrorModelImpl
.- Parameters:
start
- the lower bound of the range of batch engine import task errorsend
- the upper bound of the range of batch engine import task errors (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of batch engine import task errors
-
removeAll
void removeAll()Removes all the batch engine import task errors from the database. -
countAll
int countAll()Returns the number of batch engine import task errors.- Returns:
- the number of batch engine import task errors
-