Uses of Interface
com.atlassian.confluence.core.persistence.ContentEntityObjectDao

Packages that use ContentEntityObjectDao
com.atlassian.confluence.content.persistence   
com.atlassian.confluence.content.persistence.hibernate   
com.atlassian.confluence.content.render.xhtml.migration   
com.atlassian.confluence.core   
com.atlassian.confluence.core.persistence.hibernate   
com.atlassian.confluence.labels.persistence.dao.hibernate   
com.atlassian.confluence.mail.persistence.dao   
com.atlassian.confluence.mail.persistence.dao.hibernate   
com.atlassian.confluence.pages   
com.atlassian.confluence.pages.persistence.dao   
com.atlassian.confluence.pages.persistence.dao.hibernate   
com.atlassian.confluence.renderer.radeox.macros   
com.atlassian.confluence.rpc.soap   
com.atlassian.confluence.search.lucene.extractor   
com.atlassian.confluence.search.lucene.tasks   
com.atlassian.confluence.search.v2.lucene Provides a Lucene-backed implementation of the SearchManager
com.atlassian.confluence.servlet.download   
com.atlassian.confluence.upgrade.upgradetask   
com.atlassian.confluence.userstatus   
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.content.persistence
 

Subinterfaces of ContentEntityObjectDao in com.atlassian.confluence.content.persistence
 interface CustomContentDao
           
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.content.persistence.hibernate
 

Classes in com.atlassian.confluence.content.persistence.hibernate that implement ContentEntityObjectDao
 class PluginContentHibernateDao
          Hibernate Implementation of the CustomContentDao
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.content.render.xhtml.migration
 

Subinterfaces of ContentEntityObjectDao in com.atlassian.confluence.content.render.xhtml.migration
 interface ContentDao
           DAO to allow us to load content objects by id for migration.
 

Classes in com.atlassian.confluence.content.render.xhtml.migration that implement ContentEntityObjectDao
 class DefaultContentDao
          
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.core
 

Fields in com.atlassian.confluence.core declared as ContentEntityObjectDao
protected  ContentEntityObjectDao DefaultContentEntityManager.contentEntityObjectDao
           
 

Methods in com.atlassian.confluence.core with parameters of type ContentEntityObjectDao
 void DefaultContentEntityManager.setContentEntityObjectDao(ContentEntityObjectDao contentEntityObjectDao)
           
 

Constructors in com.atlassian.confluence.core with parameters of type ContentEntityObjectDao
DefaultDataSourceFactory(UserAccessor userAccessor, AttachmentManager attachmentManager, ContentEntityObjectDao contentEntityObjectDao, javax.activation.FileTypeMap fileTypeMap, ThumbnailManager thumbnailManager, com.atlassian.plugin.PluginAccessor pluginAccessor, SpaceLogoManager spaceLogoManager, com.atlassian.plugin.webresource.WebResourceIntegration webResourceIntegration)
           
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.core.persistence.hibernate
 

Classes in com.atlassian.confluence.core.persistence.hibernate that implement ContentEntityObjectDao
 class ContentEntityObjectHibernateDao
           
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.labels.persistence.dao.hibernate
 

Methods in com.atlassian.confluence.labels.persistence.dao.hibernate with parameters of type ContentEntityObjectDao
 void HibernateLabelDao.setContentEntityObjectDao(ContentEntityObjectDao contentEntityObjectDao)
           
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.mail.persistence.dao
 

Subinterfaces of ContentEntityObjectDao in com.atlassian.confluence.mail.persistence.dao
 interface MailDao
           
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.mail.persistence.dao.hibernate
 

Classes in com.atlassian.confluence.mail.persistence.dao.hibernate that implement ContentEntityObjectDao
 class HibernateMailDao
           
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.pages
 

Methods in com.atlassian.confluence.pages with parameters of type ContentEntityObjectDao
 void DefaultTrashManager.setContentEntityObjectDao(ContentEntityObjectDao contentEntityObjectDao)
           
 

Constructors in com.atlassian.confluence.pages with parameters of type ContentEntityObjectDao
DefaultAttachmentManager(AttachmentDao attachmentDao, ContentEntityObjectDao contentEntityObjectDao, com.atlassian.event.EventManager eventManager)
           
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.pages.persistence.dao
 

Subinterfaces of ContentEntityObjectDao in com.atlassian.confluence.pages.persistence.dao
 interface PageDao
           
 

Methods in com.atlassian.confluence.pages.persistence.dao with parameters of type ContentEntityObjectDao
 void WebDavAttachmentDao.setContentEntityObjectDao(ContentEntityObjectDao contentEntityObjectDao)
          Deprecated.  
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.pages.persistence.dao.hibernate
 

Classes in com.atlassian.confluence.pages.persistence.dao.hibernate that implement ContentEntityObjectDao
 class CachingPageDao
          This maintains a cache of (space key, page title) -> (page id) mappings.
 class HibernatePageDao
           
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.renderer.radeox.macros
 

Methods in com.atlassian.confluence.renderer.radeox.macros with parameters of type ContentEntityObjectDao
 void ContentByUserMacro.setContentEntityObjectDao(ContentEntityObjectDao contentEntityObjectDao)
           
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.rpc.soap
 

Methods in com.atlassian.confluence.rpc.soap with parameters of type ContentEntityObjectDao
 void XhtmlSoapService.setContentEntityObjectDao(ContentEntityObjectDao contentEntityObjectDao)
           
 void WikiSoapService.setContentEntityObjectDao(ContentEntityObjectDao contentEntityObjectDao)
           
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.search.lucene.extractor
 

Methods in com.atlassian.confluence.search.lucene.extractor with parameters of type ContentEntityObjectDao
 void ContentEntityMetadataExtractor.setContentEntityObjectDao(ContentEntityObjectDao contentDao)
           
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.search.lucene.tasks
 

Methods in com.atlassian.confluence.search.lucene.tasks with parameters of type ContentEntityObjectDao
 void IndexTaskFactory.setContentEntityObjectDao(ContentEntityObjectDao contentEntityObjectDao)
           
 

Constructors in com.atlassian.confluence.search.lucene.tasks with parameters of type ContentEntityObjectDao
RebuildChangeDocumentsIndexTask(com.atlassian.bonnie.Searchable searchable, ContentEntityObjectDao contentEntityObjectDao, AttachmentManager attachmentManager, IndexTaskFactory indexTaskFactory)
          Constructs a rebuild change document index task.
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.search.v2.lucene
 

Constructors in com.atlassian.confluence.search.v2.lucene with parameters of type ContentEntityObjectDao
LuceneSearchManager(LuceneSearchMapper luceneSearchMapper, LuceneSearcher luceneSearcher, AnyTypeDao anyTypeDao, com.atlassian.bonnie.analyzer.LuceneAnalyzerFactory luceneAnalyzerFactory, ContentEntityObjectDao contentEntityObjectDao)
           
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.servlet.download
 

Methods in com.atlassian.confluence.servlet.download with parameters of type ContentEntityObjectDao
 void AttachmentUrlParser.setContentEntityObjectDao(ContentEntityObjectDao contentEntityObjectDao)
           
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.upgrade.upgradetask
 

Constructors in com.atlassian.confluence.upgrade.upgradetask with parameters of type ContentEntityObjectDao
InstallationDateUpgradeTask(com.atlassian.config.ApplicationConfiguration applicationConfig, ContentEntityObjectDao ceoDao, com.atlassian.bandana.BandanaManager bandanaManager)
           
 

Uses of ContentEntityObjectDao in com.atlassian.confluence.userstatus
 

Subinterfaces of ContentEntityObjectDao in com.atlassian.confluence.userstatus
 interface UserStatusDao
          Interface to the persisted user status objects
 

Classes in com.atlassian.confluence.userstatus that implement ContentEntityObjectDao
 class HibernateUserStatusDao
           
 



Copyright © 2003-2013 Atlassian. All Rights Reserved.