Interface ByteArrayEntityManager
-
- All Superinterfaces:
EntityManager<ByteArrayEntity>
- All Known Implementing Classes:
ByteArrayEntityManagerImpl
public interface ByteArrayEntityManager extends EntityManager<ByteArrayEntity>
- Author:
- Joram Barrez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbulkDeleteByteArraysById(List<String> byteArrayEntityIds)Deletes theByteArrayEntitywith the given ids from the database.voiddeleteByteArrayById(String byteArrayEntityId)Deletes theByteArrayEntitywith the given id from the database.List<ByteArrayEntity>findAll()Returns allByteArrayEntity.
-
-
-
Method Detail
-
findAll
List<ByteArrayEntity> findAll()
Returns allByteArrayEntity.
-
deleteByteArrayById
void deleteByteArrayById(String byteArrayEntityId)
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!.
-
bulkDeleteByteArraysById
void bulkDeleteByteArraysById(List<String> byteArrayEntityIds)
Deletes theByteArrayEntitywith the given ids 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!.
-
-