Interface ByteArrayEntityManager
- All Superinterfaces:
EntityManager<IdmByteArrayEntity>
- All Known Implementing Classes:
ByteArrayEntityManagerImpl
- Author:
- Joram Barrez
-
Method Summary
Modifier and TypeMethodDescriptionvoid
deleteByteArrayById
(String byteArrayEntityId) Deletes theIdmByteArrayEntity
with the given id from the database.findAll()
Returns allIdmByteArrayEntity
.
-
Method Details
-
findAll
List<IdmByteArrayEntity> findAll()Returns allIdmByteArrayEntity
. -
deleteByteArrayById
Deletes theIdmByteArrayEntity
with the given id from the database. Important: this operation will NOT do any optimistic locking, to avoid loading the bytes in memory. So use this method only in conjunction with an entity that has optimistic locking!.
-