Package de.xima.fc.dao.interfaces
Interface IAttachmentDao
-
- All Superinterfaces:
de.xima.cmn.dao.interfaces.IAbstractDao<Attachment,Long,IEntityContext>
,IGenericDao<Attachment>
- All Known Implementing Classes:
AttachmentDao
public interface IAttachmentDao extends IGenericDao<Attachment>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Attachment
createByUser(IEntityContext ec, String username, Attachment attachment)
void
deleteByUser(IEntityContext ec, String username, boolean force, Attachment... attachments)
void
deleteByUser(IEntityContext ec, String username, Attachment... attachments)
List<Attachment>
getAllBy(IEntityContext ec, Vorgang vorgang, EAttachmentSource source, String uuid)
Attachment
getByName(IEntityContext ec, Vorgang vorgang, String name)
Attachment
getByUUID(IEntityContext ec, String uuid)
Attachment
getByUUID(IEntityContext ec, String uuid, Vorgang v)
Attachment
getByUUID(IEntityContext ec, UUID uuid)
Returns the attachment with the given UUIDlong
getUsedFileSize(IEntityContext ec, Mandant mandant)
Attachment
updateByUser(IEntityContext ec, String username, String oldFileName, Attachment attachment)
-
Methods inherited from interface de.xima.cmn.dao.interfaces.IAbstractDao
all, bulkDelete, bulkUpdate, checkLockingVersion, create, create, delete, delete, deleteAll, executePagedDaoAction, getAttributes, getAttributes, getSingleAttributes, getSingleAttributes, getTransactionHandler, read, registerListener, registerListener, registerListener, resultTotalCount, setTransactionHandler, singleElement, unregisterListener, unregisterListener, unregisterListener, update, update
-
Methods inherited from interface de.xima.fc.dao.interfaces.IGenericDao
getEntityRefs, read
-
-
-
-
Method Detail
-
getByName
Attachment getByName(IEntityContext ec, Vorgang vorgang, String name)
-
getAllBy
List<Attachment> getAllBy(IEntityContext ec, Vorgang vorgang, EAttachmentSource source, String uuid)
-
getByUUID
Attachment getByUUID(IEntityContext ec, String uuid, Vorgang v)
-
getByUUID
Attachment getByUUID(IEntityContext ec, String uuid)
-
getByUUID
Attachment getByUUID(IEntityContext ec, UUID uuid)
Returns the attachment with the given UUID- Parameters:
ec
-IEntityContext
to useuuid
-UUID
UUID of the attachment- Returns:
Attachment
for the given UUID- Since:
- 6.1.0
-
getUsedFileSize
long getUsedFileSize(IEntityContext ec, Mandant mandant)
-
deleteByUser
void deleteByUser(IEntityContext ec, String username, Attachment... attachments)
-
deleteByUser
void deleteByUser(IEntityContext ec, String username, boolean force, Attachment... attachments)
-
updateByUser
Attachment updateByUser(IEntityContext ec, String username, String oldFileName, Attachment attachment)
-
createByUser
Attachment createByUser(IEntityContext ec, String username, Attachment attachment)
-
-