public class HibernateAttachmentDataDao extends HibernateObjectDao implements TransactionalAttachmentDataDao
As a result, it is transactional (can be rolled back), so it implements the TransactionalAttachmentDataDao interface.
HibernateObjectDao.Cacheability
Constructor and Description |
---|
HibernateAttachmentDataDao() |
Modifier and Type | Method and Description |
---|---|
void |
afterMigrationFrom()
Once a data migration has occurred, remove all records from the table,
as they are no longer necessary, and we don't want foreign key violations
to occur when removing Attachments.
|
@NonNull List |
findAll()
Find all objects of the class provided by getPersistentClass()
|
@NonNull List |
findAllSorted(String s)
Find all objects currently persisted of a particular type and sort results by named property.
|
protected AttachmentData |
getAttachmentDataForAttachment(Attachment attachment)
Retrieves the attachment data object for a given attachment.
|
InputStream |
getDataForAttachment(Attachment attachment)
Grabs the AttachmentData object for an Attachment
|
AttachmentDataStream |
getDataForAttachment(Attachment attachment,
AttachmentDataStreamType dataStreamType)
Grabs the AttachmentData object for an Attachment
|
AttachmentDataStream |
getDataForAttachment(Attachment attachment,
AttachmentDataStreamType dataStreamType,
Optional<RangeRequest> range)
Grabs the AttachmentData object for an Attachment
|
Class |
getPersistentClass()
Gets the type of
EntityObject this Dao works with. |
AttachmentDataStorageType |
getStorageType()
Returns the storage type.
|
boolean |
isAttachmentPresent(Attachment attachment)
Check that an attachment exists
|
void |
moveAttachment(Attachment attachment,
Attachment oldAttachment,
ContentEntityObject newContent)
Moves an attachment to a new file name or content object
|
void |
moveDataForAttachmentVersion(Attachment sourceAttachmentVersion,
Attachment targetAttachmentVersion)
Moves the attachment data from one
AbstractVersionedEntityObject.getVersion() to the other. |
void |
prepareForMigrationTo()
This implementation clears out the Attachment data table, so we
have a clean base for migration.
|
void |
removeDataForAttachment(Attachment attachment,
ContentEntityObject originalContent)
Removes all attachment data for the given attachment.
|
void |
removeDataForAttachmentVersion(Attachment attachment,
ContentEntityObject originalContent)
Removes the attachment data for the given attachment version.
|
void |
removeDataForAttachmentVersion(Attachment attachmentVersion,
ContentEntityObject originalContent,
AttachmentDataStreamType dataStreamType)
Removes the attachment data of the specific stream type for the given attachment version.
|
void |
replaceDataForAttachment(Attachment attachment,
AttachmentDataStream dataStream)
Sets the data for attachment
|
void |
replaceDataForAttachment(Attachment attachment,
InputStream data)
Sets the data for attachment
|
void |
save(com.atlassian.core.bean.EntityObject objectToSave)
Save an object.
|
void |
saveDataForAttachment(Attachment attachment,
AttachmentDataStream dataStream)
Saves data to the attachment data store
|
void |
saveDataForAttachment(Attachment attachment,
InputStream data)
Saves data to the attachment data store
|
void |
saveDataForAttachmentVersion(Attachment attachment,
Attachment previousVersion,
AttachmentDataStream dataStream)
Saves data to the attachment data store, for an attachment
that has been updated.
|
void |
saveDataForAttachmentVersion(Attachment attachment,
Attachment previousVersion,
InputStream data)
Saves data to the attachment data store, for an attachment
that has been updated.
|
applyTransactionTimeout, applyTransactionTimeout, checkDaoConfig, createHibernateTemplate, findAllSorted, findByClassIds, findByClassIdsFiltered, findNamedQuery, findNamedQuery, findNamedQuery, findNamedQueryStringParam, findNamedQueryStringParam, findNamedQueryStringParam, findNamedQueryStringParams, findNamedQueryStringParams, findNamedQueryStringParams, findNamedQueryStringParams, findNamedQueryStringParams, findNamedQueryStringParams, findNamedQueryStringParams, findNamedQueryStringParams, findNamedQueryStringParams, findNamedQueryStringParams, findNamedQueryStringParams, findSingleObject, getByClassId, getCountResult, getHibernateTemplate, getSession, getSessionFactory, index, indexEntity, refresh, refreshEntity, reIndex, reIndexEntity, remove, removeEntity, replicate, replicateEntity, saveEntity, saveRaw, saveRawEntity, setHibernateTemplate, setIndexer, setSessionFactory, unIndex, unIndexEntity, uniqueResult, updateEntityModificationData, updateModificationData
public @NonNull List findAll()
HibernateObjectDao
findAll
in interface ObjectDao
findAll
in interface ObjectDaoInternal
findAll
in class HibernateObjectDao
public @NonNull List findAllSorted(String s)
ObjectDaoInternal
findAllSorted
in interface ObjectDao
findAllSorted
in interface ObjectDaoInternal
findAllSorted
in class HibernateObjectDao
s
- the name of the property to be sorted on. This should be null if no sorting is required.public void save(com.atlassian.core.bean.EntityObject objectToSave)
HibernateObjectDao
save
in interface ObjectDao
save
in interface ObjectDaoInternal
save
in class HibernateObjectDao
objectToSave
- the object to savepublic Class getPersistentClass()
ObjectDaoInternal
EntityObject
this Dao works with.getPersistentClass
in interface ObjectDao
getPersistentClass
in interface ObjectDaoInternal
protected AttachmentData getAttachmentDataForAttachment(Attachment attachment) throws AttachmentDataNotFoundException
attachment
- the attachment to retrieve data forAttachmentDataNotFoundException
- if the attachment data is not foundorg.springframework.dao.IncorrectResultSizeDataAccessException
- if the database contains more than one data
object associated with the given attachmentpublic InputStream getDataForAttachment(Attachment attachment) throws AttachmentDataNotFoundException
AttachmentDataDao
getDataForAttachment
in interface AttachmentDataDao
attachment
- the Attachment representing the dataAttachmentDataNotFoundException
- if no data was foundpublic void removeDataForAttachment(Attachment attachment, ContentEntityObject originalContent)
AttachmentDataDao
removeDataForAttachment
in interface AttachmentDataDao
attachment
- the latest version of the attachment for which the data should be removedoriginalContent
- the content the attachment belongs topublic void removeDataForAttachmentVersion(Attachment attachment, ContentEntityObject originalContent)
AttachmentDataDao
removeDataForAttachmentVersion
in interface AttachmentDataDao
attachment
- the version of the attachment for which the data should be removedoriginalContent
- the content the attachment belongs topublic void removeDataForAttachmentVersion(Attachment attachmentVersion, ContentEntityObject originalContent, AttachmentDataStreamType dataStreamType)
AttachmentDataDao
removeDataForAttachmentVersion
in interface AttachmentDataDao
attachmentVersion
- the version of the attachment for which the data should be removedoriginalContent
- the content the attachment belongs todataStreamType
- the data stream typepublic void moveDataForAttachmentVersion(Attachment sourceAttachmentVersion, Attachment targetAttachmentVersion)
AttachmentDataDao
AbstractVersionedEntityObject.getVersion()
to the other.
This method will overwrite any existing data for the target attachment version.
moveDataForAttachmentVersion
in interface AttachmentDataDao
sourceAttachmentVersion
- the attachmentAttachmentDataDao.moveAttachment(Attachment, Attachment, ContentEntityObject)
public void saveDataForAttachment(Attachment attachment, InputStream data)
AttachmentDataDao
saveDataForAttachment
in interface AttachmentDataDao
attachment
- the Attachment the data belongs todata
- the InputStream to be writtenpublic void saveDataForAttachmentVersion(Attachment attachment, Attachment previousVersion, InputStream data)
AttachmentDataDao
This method assumes that the attachment has already been saved.
saveDataForAttachmentVersion
in interface AttachmentDataDao
attachment
- the new version of the attachmentpreviousVersion
- the previous version of the attachmentdata
- the InputStream representing the datapublic void replaceDataForAttachment(Attachment attachment, InputStream data)
AttachmentDataDao
This method will overwrite any existing data for the attachment.
replaceDataForAttachment
in interface AttachmentDataDao
attachment
- Attachment the data belongs todata
- the data to be savedpublic boolean isAttachmentPresent(Attachment attachment)
AttachmentDataDao
isAttachmentPresent
in interface AttachmentDataDao
attachment
- the Attachment to be checkedpublic void moveAttachment(Attachment attachment, Attachment oldAttachment, ContentEntityObject newContent)
AttachmentDataDao
moveAttachment
in interface AttachmentDataDao
attachment
- the Attachment to be movedoldAttachment
- the original version of the attachmentnewContent
- the new content the Attachment belongs topublic void prepareForMigrationTo()
prepareForMigrationTo
in interface AttachmentDataDao
public void afterMigrationFrom()
afterMigrationFrom
in interface AttachmentDataDao
public AttachmentDataStorageType getStorageType()
AttachmentDataDao
The client code should be storage agnostic in general. Thus this method should only be used in rare cases in order to hide operations which are known to be not implemented for the specific type.
getStorageType
in interface AttachmentDataDao
public AttachmentDataStream getDataForAttachment(Attachment attachment, AttachmentDataStreamType dataStreamType) throws AttachmentDataNotFoundException
AttachmentDataDao
getDataForAttachment
in interface AttachmentDataDao
attachment
- the Attachment representing the dataAttachmentDataNotFoundException
- if no data was foundpublic AttachmentDataStream getDataForAttachment(Attachment attachment, AttachmentDataStreamType dataStreamType, Optional<RangeRequest> range) throws AttachmentDataNotFoundException
AttachmentDataDao
getDataForAttachment
in interface AttachmentDataDao
attachment
- the Attachment representing the datadataStreamType
- the stream type of attachmentrange
- the range of attachment dataAttachmentDataNotFoundException
- if no data was foundpublic void saveDataForAttachment(Attachment attachment, AttachmentDataStream dataStream)
AttachmentDataDao
saveDataForAttachment
in interface AttachmentDataDao
attachment
- the Attachment the data belongs todataStream
- the data stream to be writtenpublic void saveDataForAttachmentVersion(Attachment attachment, Attachment previousVersion, AttachmentDataStream dataStream)
AttachmentDataDao
This method assumes that the attachment has already been saved.
saveDataForAttachmentVersion
in interface AttachmentDataDao
attachment
- the new version of the attachmentpreviousVersion
- the previous version of the attachmentdataStream
- the InputStream representing the datapublic void replaceDataForAttachment(Attachment attachment, AttachmentDataStream dataStream)
AttachmentDataDao
This method will overwrite any existing data for the attachment.
replaceDataForAttachment
in interface AttachmentDataDao
attachment
- Attachment the data belongs todataStream
- the data to be savedCopyright © 2003–2020 Atlassian. All rights reserved.