Uses of Interface
com.atlassian.confluence.internal.pages.persistence.AttachmentDaoInternal
-
-
Uses of AttachmentDaoInternal in com.atlassian.confluence.impl.backuprestore.backup.container
Constructors in com.atlassian.confluence.impl.backuprestore.backup.container with parameters of type AttachmentDaoInternal Constructor Description BackupContainerWriterFactoryImpl(@NotNull ConfluenceDirectories confluenceDirectories, @NotNull AttachmentDataFileSystem attachmentDataFileSystem, @NotNull AttachmentDaoInternal attachmentDaoInternal)
XmlBackupContainerWriter(File outputFile, ArchiveWriter archiveWriter, AttachmentDataFileSystem attachmentDataFileSystem, PluginDataWriter pluginWriter, AttachmentDaoInternal attachmentDaoInternal)
XmlBackupContainerWriter(File outputFile, ArchiveWriter archiveWriter, AttachmentDataFileSystem attachmentDataFileSystem, PluginDataWriter pluginWriter, AttachmentDaoInternal attachmentDaoInternal, Instant currentTime)
-
Uses of AttachmentDaoInternal in com.atlassian.confluence.impl.backuprestore.restore
Constructors in com.atlassian.confluence.impl.backuprestore.restore with parameters of type AttachmentDaoInternal Constructor Description ImportedObjectsDispatcherFactory(ImportedObjectsStashFactory importedObjectsStashFactory, RestoreDao restoreDao, EntityInfoSqlHelper entityInfoSqlHelper, IdMapperFactory idMapperFactory, StorageFormatUserRewriter storageFormatUserRewriter, AttachmentDataFileSystem attachmentDataFileSystem, AttachmentDaoInternal attachmentDaoInternal)
-
Uses of AttachmentDaoInternal in com.atlassian.confluence.impl.backuprestore.restore.persisters
Constructors in com.atlassian.confluence.impl.backuprestore.restore.persisters with parameters of type AttachmentDaoInternal Constructor Description AttachmentsPersister(AttachmentDataFileSystem attachmentDataFileSystem, AttachmentDaoInternal attachmentDao, IdMapper idMapper, Callable<ZipFile> zipFile, Boolean backupAttachments)
-
Uses of AttachmentDaoInternal in com.atlassian.confluence.impl.pages.attachments
Classes in com.atlassian.confluence.impl.pages.attachments that implement AttachmentDaoInternal Modifier and Type Class Description class
ReadThroughCachingAttachmentDao
Caches the IDs of attachments retrieved withReadThroughCachingAttachmentDao.getLatestAttachment(ContentEntityObject, String)
in a cache.Constructors in com.atlassian.confluence.impl.pages.attachments with parameters of type AttachmentDaoInternal Constructor Description ReadThroughCachingAttachmentDao(AttachmentDaoInternal delegate, ReadThroughCache<String,Attachment> cache)
-
Uses of AttachmentDaoInternal in com.atlassian.confluence.pages
Methods in com.atlassian.confluence.pages with parameters of type AttachmentDaoInternal Modifier and Type Method Description void
DefaultAttachmentManager. setAttachmentDao(AttachmentDaoInternal attachmentDao)
Constructors in com.atlassian.confluence.pages with parameters of type AttachmentDaoInternal Constructor Description DefaultAttachmentManager(AttachmentDaoInternal attachmentDao, ContentEntityObjectDaoInternal<?> contentEntityObjectDao, com.atlassian.event.api.EventPublisher eventPublisher, UserPreferencesAccessor userPreferencesAccessor, NotificationManager notificationManager, RelationManager relationManager, RetentionFeatureChecker retentionFeatureChecker, ContentReconciliationManager reconciliationManager)
-
Uses of AttachmentDaoInternal in com.atlassian.confluence.pages.attachments
Classes in com.atlassian.confluence.pages.attachments that implement AttachmentDaoInternal Modifier and Type Class Description class
AbstractDelegatingAttachmentDao
AnAttachmentDaoInternal
implementation that just delegates to anotherAttachmentDaoInternal
.Constructors in com.atlassian.confluence.pages.attachments with parameters of type AttachmentDaoInternal Constructor Description AbstractDelegatingAttachmentDao(AttachmentDaoInternal delegate)
-
Uses of AttachmentDaoInternal in com.atlassian.confluence.pages.persistence.dao.hibernate
Classes in com.atlassian.confluence.pages.persistence.dao.hibernate that implement AttachmentDaoInternal Modifier and Type Class Description class
AbstractHibernateAttachmentDao
Abstract class that defines the basic methods necessary for saving Attachments to a database.class
NonTransactionalHibernateAttachmentDao
Non-transactional version of the AbstractHibernateAttachmentDao, which removes all attachment data from the data store after removing the attachments from the database.class
TransactionalHibernateAttachmentDao
Transactional version of the AbstractHibernateAttachmentDao, which removes the Attachment data as the Attachment itself is being removed, since it can be rolled back by the transaction
-