@ProviderType public interface BatchEngineImportTaskErrorPersistence extends com.liferay.portal.kernel.service.persistence.BasePersistence<BatchEngineImportTaskError>
Caching information and settings can be found in portal.properties
BatchEngineImportTaskErrorUtil
Modifier and Type | Method and Description |
---|---|
void |
cacheResult(BatchEngineImportTaskError batchEngineImportTaskError)
Caches the batch engine import task error in the entity cache if it is enabled.
|
void |
cacheResult(java.util.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 = ?.
|
BatchEngineImportTaskError |
create(long batchEngineImportTaskErrorId)
Creates a new batch engine import task error with the primary key.
|
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 = ?.
|
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 = ?.
|
BatchEngineImportTaskError |
fetchByPrimaryKey(long batchEngineImportTaskErrorId)
Returns the batch engine import task error with the primary key or returns
null if it could not be found. |
java.util.List<BatchEngineImportTaskError> |
findAll()
Returns all the batch engine import task errors.
|
java.util.List<BatchEngineImportTaskError> |
findAll(int start,
int end)
Returns a range of all the batch engine import task errors.
|
java.util.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.
|
java.util.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.
|
BatchEngineImportTaskError |
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 = ?.
|
BatchEngineImportTaskError |
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 = ?.
|
BatchEngineImportTaskError[] |
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 = ?.
|
java.util.List<BatchEngineImportTaskError> |
findByBatchEngineImportTaskId(long batchEngineImportTaskId)
Returns all the batch engine import task errors where batchEngineImportTaskId = ?.
|
java.util.List<BatchEngineImportTaskError> |
findByBatchEngineImportTaskId(long batchEngineImportTaskId,
int start,
int end)
Returns a range of all the batch engine import task errors where batchEngineImportTaskId = ?.
|
java.util.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 = ?.
|
java.util.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 = ?.
|
BatchEngineImportTaskError |
findByPrimaryKey(long batchEngineImportTaskErrorId)
Returns the batch engine import task error with the primary key or throws a
NoSuchImportTaskErrorException if it could not be found. |
BatchEngineImportTaskError |
remove(long batchEngineImportTaskErrorId)
Removes the batch engine import task error with the primary key from the database.
|
void |
removeAll()
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.
|
BatchEngineImportTaskError |
updateImpl(BatchEngineImportTaskError batchEngineImportTaskError) |
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, setDataSource, unregisterListener, update, update
java.util.List<BatchEngineImportTaskError> findByBatchEngineImportTaskId(long batchEngineImportTaskId)
batchEngineImportTaskId
- the batch engine import task IDjava.util.List<BatchEngineImportTaskError> findByBatchEngineImportTaskId(long batchEngineImportTaskId, int start, int end)
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 BatchEngineImportTaskErrorModelImpl
.
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)java.util.List<BatchEngineImportTaskError> findByBatchEngineImportTaskId(long batchEngineImportTaskId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator)
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 BatchEngineImportTaskErrorModelImpl
.
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 (optionally null
)java.util.List<BatchEngineImportTaskError> findByBatchEngineImportTaskId(long batchEngineImportTaskId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator, boolean useFinderCache)
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 BatchEngineImportTaskErrorModelImpl
.
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 (optionally null
)useFinderCache
- whether to use the finder cacheBatchEngineImportTaskError findByBatchEngineImportTaskId_First(long batchEngineImportTaskId, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator) throws NoSuchImportTaskErrorException
batchEngineImportTaskId
- the batch engine import task IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchImportTaskErrorException
- if a matching batch engine import task error could not be foundBatchEngineImportTaskError fetchByBatchEngineImportTaskId_First(long batchEngineImportTaskId, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator)
batchEngineImportTaskId
- the batch engine import task IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching batch engine import task error could not be foundBatchEngineImportTaskError findByBatchEngineImportTaskId_Last(long batchEngineImportTaskId, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator) throws NoSuchImportTaskErrorException
batchEngineImportTaskId
- the batch engine import task IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchImportTaskErrorException
- if a matching batch engine import task error could not be foundBatchEngineImportTaskError fetchByBatchEngineImportTaskId_Last(long batchEngineImportTaskId, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator)
batchEngineImportTaskId
- the batch engine import task IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching batch engine import task error could not be foundBatchEngineImportTaskError[] findByBatchEngineImportTaskId_PrevAndNext(long batchEngineImportTaskErrorId, long batchEngineImportTaskId, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator) throws NoSuchImportTaskErrorException
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 (optionally null
)NoSuchImportTaskErrorException
- if a batch engine import task error with the primary key could not be foundvoid removeByBatchEngineImportTaskId(long batchEngineImportTaskId)
batchEngineImportTaskId
- the batch engine import task IDint countByBatchEngineImportTaskId(long batchEngineImportTaskId)
batchEngineImportTaskId
- the batch engine import task IDvoid cacheResult(BatchEngineImportTaskError batchEngineImportTaskError)
batchEngineImportTaskError
- the batch engine import task errorvoid cacheResult(java.util.List<BatchEngineImportTaskError> batchEngineImportTaskErrors)
batchEngineImportTaskErrors
- the batch engine import task errorsBatchEngineImportTaskError create(long batchEngineImportTaskErrorId)
batchEngineImportTaskErrorId
- the primary key for the new batch engine import task errorBatchEngineImportTaskError remove(long batchEngineImportTaskErrorId) throws NoSuchImportTaskErrorException
batchEngineImportTaskErrorId
- the primary key of the batch engine import task errorNoSuchImportTaskErrorException
- if a batch engine import task error with the primary key could not be foundBatchEngineImportTaskError updateImpl(BatchEngineImportTaskError batchEngineImportTaskError)
BatchEngineImportTaskError findByPrimaryKey(long batchEngineImportTaskErrorId) throws NoSuchImportTaskErrorException
NoSuchImportTaskErrorException
if it could not be found.batchEngineImportTaskErrorId
- the primary key of the batch engine import task errorNoSuchImportTaskErrorException
- if a batch engine import task error with the primary key could not be foundBatchEngineImportTaskError fetchByPrimaryKey(long batchEngineImportTaskErrorId)
null
if it could not be found.batchEngineImportTaskErrorId
- the primary key of the batch engine import task errornull
if a batch engine import task error with the primary key could not be foundjava.util.List<BatchEngineImportTaskError> findAll()
java.util.List<BatchEngineImportTaskError> findAll(int start, int end)
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 BatchEngineImportTaskErrorModelImpl
.
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)java.util.List<BatchEngineImportTaskError> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator)
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 BatchEngineImportTaskErrorModelImpl
.
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 (optionally null
)java.util.List<BatchEngineImportTaskError> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<BatchEngineImportTaskError> orderByComparator, boolean useFinderCache)
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 BatchEngineImportTaskErrorModelImpl
.
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 (optionally null
)useFinderCache
- whether to use the finder cachevoid removeAll()
int countAll()