Interface ByteArrayEntityManager
- All Superinterfaces:
EntityManager<ByteArrayEntity>
- All Known Implementing Classes:
ByteArrayEntityManagerImpl
-
Method Summary
Modifier and TypeMethodDescriptionvoiddeleteByteArrayById(String byteArrayEntityId) Deletes theByteArrayEntitywith the given id from the database.findAll()Returns allByteArrayEntity.
-
Method Details
-
findAll
List<ByteArrayEntity> findAll()Returns allByteArrayEntity. -
deleteByteArrayById
Deletes theByteArrayEntitywith 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!.
-