Interface and Description |
---|
com.atlassian.confluence.core.Administrative
since 2.8. Please avoid this interface. Instead override
ConfluenceActionSupport.isPermitted()
and use PermissionManager.hasPermission(User,Permission,Object) instead. This will make it easier
to determine the permissions required to invoke an action as they would be more explicit and in one place
(you won't have to check whether the class or its super class implements this interface). |
com.atlassian.confluence.it.BaseUrlSelector
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.BaseUrlSelector} alternative
|
com.atlassian.confluence.core.Beanable
since 5.2. If you want a JSON-producing REST endpoint, then use a proper JAXRS resource.
|
com.atlassian.confluence.cache.CacheConfigurationLoader
since 5.7.
|
bucket.cache.CacheManager
since 2.7, use
CacheManager . |
com.atlassian.confluence.cluster.ClusteredLock
Since 5.6, use
ClusterLockService for locking which returns instances
of Lock |
com.atlassian.confluence.cache.ConfigurableCache
@since 5.5.1 please use
ManagedCache instead |
com.atlassian.confluence.pageobjects.module.frame.ConfluenceFrameExecutor
in 5.8. Use
ConfluenceFrameExecutor instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.ContentEntity
Please use confluence-java-api module instead.
See {com.atlassian.confluence.api.model.content.Content} alternative
|
com.atlassian.confluence.plugins.popularcontent.ContentStatsManager
since 5.2 use com.atlassian.confluence.plugins.edgeindex.EdgeQueries instead
|
com.atlassian.confluence.api.extension.typebinding.ContentTypeBinding
since 5.7, use ContentTypeApiSupport
|
com.atlassian.confluence.security.DeactivatedUserChecker
since 3.5 use
UserAccessor.isDeactivated(User) instead |
com.atlassian.confluence.diff.DiffChunk
since 5.7
|
com.atlassian.confluence.diff.renderer.DiffChunkRenderer
since 5.7
|
com.atlassian.confluence.it.usermanagement.DirectoryConfiguration
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.usermanagement.DirectoryConfiguration} alternative
|
com.atlassian.confluence.it.Entity
Please use confluence-java-api module instead.
See {com.atlassian.confluence.api.model.people.User} alternative
|
com.atlassian.confluence.userstatus.InlineWikiStyleRenderer
since 3.1 confusingly named. Use
StatusTextRenderer instead. |
com.atlassian.confluence.json.JSONAction
since 2.10 - Use
DefaultJsonator with an AbstractCommandAction instead.
This interface is used as a convenience to indicate that an action can provide its result in JSON format.
It's not strictly needed as the result uses reflection but is provided anyway as a convenience. |
com.atlassian.confluence.json.parser.JSONString
since 2.10 Use the json.objects classes.
The
JSONString interface allows a toJSONString()
method so that a class can change the behavior of
JSONObject.toString() , JSONArray.toString() ,
and JSONWriter.value( Object) . The
toJSONString method will be used instead of the default behavior
of using the Object's toString() method and quoting the result. |
com.atlassian.confluence.like.LikeDao
since 4.3.4 this interface is a little confused and only here for backwards compatibility
use LikeEntityDao or LikeManager
|
com.atlassian.confluence.plugins.like.LikeSummaryCreator
since 4.3. Like summary creation has been moved to client side. See like-summary-factory.js.
|
com.atlassian.confluence.it.LinkableContent
Please use confluence-java-api module instead.
See {com.atlassian.confluence.api.model.content.Content} alternative
|
com.atlassian.confluence.concurrent.Lock
Since 5.6, use
ClusterLockService for locking which returns instances
of Lock |
com.atlassian.confluence.concurrent.LockFactory
since 5.6. Use
ClusterLockService for locking |
com.atlassian.confluence.pageobjects.page.LogoutPage
in 5.8. Use
LogoutPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.search.v2.lucene.LuceneResultFilter
since 5.5. Please implement a search time
Filter instead. If you must
perform post search filtering, you can filter SearchResults returned by
the methods on SearchManager . |
com.atlassian.confluence.search.v2.lucene.LuceneResultFilterMapper
since 5.5 as it depends on the deprecated
LuceneResultFilter
and ResultFilter classes. |
com.atlassian.confluence.search.v2.lucene.LuceneSearcher
since 5.5. This layer of abstraction is no longer required. Just use
SearchManager . |
com.atlassian.confluence.mail.MailContentManager |
com.atlassian.confluence.cache.ManagedLockingCache
since 5.7. Use
LockingCache instead. |
com.atlassian.confluence.it.maven.MavenDependency
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.plugin.maven.MavenDependency} alternative
|
com.atlassian.confluence.content.render.xhtml.storage.link.user.MentionsParser
Since 5.3. No replacement.
|
com.atlassian.confluence.pageobjects.component.menu.Menu
in 5.8. Use
Menu instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.menu.MenuItem
in 5.8. Use
MenuItem instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.cluster.NameResolver
since 5.5.1. Use
ClusterUtils instead} |
com.atlassian.confluence.it.usermanagement.OnDemandLoginClient
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.usermanagement.cloud.OnDemandLoginClient} alternative
|
com.atlassian.confluence.cache.option.Option
Since 5.6 Use
Option |
com.atlassian.confluence.pageobjects.component.PageComponent
in 5.8. Use
PageComponent instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.Permission
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.rpc.api.permissions.GlobalPermission} alternative
|
com.atlassian.confluence.it.plugin.Plugin
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.plugin.Plugin} alternative
|
com.atlassian.confluence.it.plugin.PluginHelper
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.plugin.PluginHelper} alternative
|
com.atlassian.confluence.cache.ReadThroughCacheFactory
since 5.7. Please use non transactional CacheFactory to get access to read/write-through cache
|
com.atlassian.confluence.cluster.RepeatableTask
Since 5.5 Use
PollingChangeTracker |
com.atlassian.confluence.search.v2.ResultFilter
since 5.5. Please consider implemeting
SearchFilter . If you must
perform post search filtering, you can filter SearchResults returned by
the methods on SearchManager . |
com.atlassian.confluence.it.rpc.RpcBaseResolver
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.rpc.RpcBaseResolver} alternative
|
com.atlassian.confluence.core.SmartListManager
since 4.2 use the
SearchManager |
com.atlassian.confluence.spaces.actions.SpaceAdministrative
since 2.8. Please avoid this interface. Instead override
ConfluenceActionSupport.isPermitted()
and use PermissionManager.hasPermission(User,Permission,Object) instead.
This will make it easier to determine the permissions required to invoke an action as they would be more
explicit and in one place (you won't have to check whether the class or its super class implements this
interface). Also implement BreadcrumbAware and call:
BreadcrumbGenerator 's getSpaceAdminBreadcrumb method |
com.atlassian.confluence.spaces.actions.Spaced
since 3.0. Use
Spaced instead. |
com.atlassian.confluence.themes.ThemeStylesheet
since 3.4. Use
ThemeResource instead. |
com.atlassian.confluence.util.ThumbnailInfoFactory |
com.atlassian.confluence.it.TitledContent
Please use confluence-java-api module instead.
See {com.atlassian.confluence.api.model.content.Content} alternative
|
com.atlassian.confluence.content.service.page.TrashPageCommand
since 5.8. Use
DeletePageCommand instead |
com.atlassian.confluence.it.plugin.UploadablePlugin
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.plugin.UploadablePlugin} alternative
|
com.atlassian.confluence.it.usermanagement.UserManagementHelper
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.usermanagement.UserManager} alternative
|
com.atlassian.confluence.user.service.UserProfileService
since 5.7. CONFDEV-28074 User profile related services will be extracted to a plugin.
|
com.atlassian.confluence.api.model.validation.WithValidationResult
since 5.8 - no longer used; result typically supplied via
ServiceException.getOptionalValidationResult()
instead. |
com.atlassian.confluence.search.v2.lucene.WrappedHit
since 5.2. Hit abstraction no longer exists in lucene 4.2.x.
|
com.atlassian.confluence.content.render.xhtml.XhtmlCleaner
since 5.1.4 See
StorageFormatCleaner and RenderedContentCleaner instead. |
Class and Description |
---|
com.atlassian.confluence.AbstractAtlassianWebTestCase |
com.atlassian.confluence.pageobjects.component.attachment.AbstractAttachmentContainer
in 5.8. Use
AbstractAttachmentContainer instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.AbstractContentEntity
Please use confluence-java-api module instead.
See {com.atlassian.confluence.api.model.content.Content} alternative
|
com.atlassian.confluence.api.extension.typebinding.AbstractContentTypeBinding
since 5.7, use ContentTypeApiSupport
|
com.atlassian.confluence.pageobjects.component.dialog.AbstractDialog
in 5.8. Use
AbstractDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.AbstractEditorPage
in 5.8. Use
AbstractEditorPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.AbstractEditStylesheetPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.admin.AbstractEditStylesheetPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.templates.AbstractEditTemplatePage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.admin.templates.AbstractEditTemplatePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.admin.AbstractGadgetAdminTab
in 5.8. Use
AbstractGadgetAdminTab instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.security.actions.AbstractGlobalPermissionsAction |
com.atlassian.confluence.pageobjects.component.labels.AbstractLabelSection
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.component.labels.AbstractLabelSection instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.usermanagement.AbstractOnDemandLoginClient
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.usermanagement.cloud.AbstractOnDemandLoginClient} alternative
|
com.atlassian.confluence.content.render.xhtml.migration.AbstractOrderedEntityObjectBatchableWorkSource
Since 5.3 Use
OrderedEntityObjectBatchableWorkSource . |
com.atlassian.confluence.it.AbstractPageEntity
Please use confluence-java-api module instead.
See {com.atlassian.confluence.api.model.content.Content} alternative
|
com.atlassian.confluence.servlet.simpledisplay.AbstractPathConverter
since Confluence 4.3 No alternative is offered. Simply implement PathConverter directly.
|
com.atlassian.confluence.it.rest.AbstractRestAcceptanceTest
Since 5.6 Use
AbstractJUnit3RestAcceptanceTest , or a
JUnit4-style test with its own set of fields as required. |
com.atlassian.confluence.pageobjects.page.space.AbstractSpaceExport
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.space.AbstractSpaceExport instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.security.actions.AbstractSpacePermissionsAction |
com.atlassian.confluence.pageobjects.page.admin.templates.AbstractTemplatesPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.admin.templates.AbstractTemplatesPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.AbstractViewPage
in 5.8. Use
AbstractViewPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.webdriver.AbstractWebDriverTest
since 5.5 use
AbstractInjectableWebDriverTest . |
com.atlassian.confluence.it.AcceptanceTestHelper
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.utils.AcceptanceTestHelper} alternative
|
com.atlassian.confluence.pageobjects.component.dialog.ActivityStreamGadgetMacroPreview
in 5.8. Use
ActivityStreamGadgetMacroPreview instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.ActivityStreamGadgetMacroView
in 5.8. Use
ActivityStreamGadgetMacroView instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pages.thumbnail.renderer.AdaptiveThresholdPredicate
since 5.3 Use
FreeMemoryAwareImageRenderPredicate . |
com.atlassian.confluence.pageobjects.component.menu.AddMenu
in 5.8. Use
AddMenu instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.AddSpaceDialog
since 5.4 use page objects provided by the create content plugin
CreateSpaceDialog |
com.atlassian.confluence.pageobjects.component.form.AddSpaceForm
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.component.form.AddSpaceForm instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.space.AddSpacePage
since 5.3 - use page objects provided by the Create Content Plugin e.g.
CreateSpaceDialog |
com.atlassian.confluence.pageobjects.component.admin.users.AddUserTab
in 5.8. Use
AddUserTab instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.AlaCarteJiraLogoutPage
in 5.8. Use
AlaCarteJiraLogoutPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.AlaCarteLogoutPage
in 5.8. Use
AlaCarteLogoutPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.renderer.radeox.macros.AnchorMacro
since 4.0 - not being used.
|
com.atlassian.confluence.it.Assertions |
com.atlassian.confluence.it.Attachment
Please use confluence-java-api module instead.
See {com.atlassian.confluence.api.model.content.Content} alternative
|
com.atlassian.confluence.pageobjects.component.attachment.AttachmentContainer
in 5.8. Use
AttachmentContainer instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.attachment.AttachmentRemovalConfirmationDialog
in 5.8. Use
AttachmentRemovalConfirmationDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.content.AttachmentsRow
since 4.3, Use
AttachmentContainer instead. Since v5.8 |
com.atlassian.confluence.content.ui.AttachmentUiSupport.AttachmentInfo
Since 4.3. This class is only public because it is used by ContentTypesDisplayMapper. Avoid using
this class directly and use a ContentUiSupport object instead. This class will be made private when
ContentTypesDisplayMapper is removed. |
com.atlassian.confluence.pageobjects.component.attachment.AttachmentVersionContainer
in 5.8. Use
AttachmentVersionContainer instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.menu.AUIDropdownMenu
in 5.8. Use
AUIDropdownMenu instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.AuiMessage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.component.AuiMessage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.form.Autocomplete
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.component.form.Autocomplete instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.form.AutocompleteField
in 5.8. Use
AutocompleteField instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.theme.AvailableTheme |
com.atlassian.confluence.util.http.httpclient.BasicAuthenticator
Since 5.5 not used.
|
com.atlassian.confluence.it.BlogPost
Please use confluence-java-api module instead.
See {com.atlassian.confluence.api.model.content.Content} alternative
|
com.atlassian.confluence.pageobjects.component.header.Breadcrumbs
in 5.8. Use
Breadcrumbs instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.menu.BrowseMenu
in 5.8. Use
BrowseMenu instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.space.BrowseSpacePage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.space.BrowseSpacePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.BrowseUsersAdminPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.admin.BrowseUsersAdminPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
bucket.user.persistence.dao.hibernate.BucketUserDAO
since 5.0.
|
com.atlassian.confluence.upgrade.BuildNumComparator
since 4.2
|
com.atlassian.confluence.cache.CacheAdapter
since 5.7 Use
DefaultConfluenceCache instead. |
com.atlassian.confluence.cache.CacheCompactionJob
since 5.8 Use
RunnableJob |
com.atlassian.confluence.cache.CacheStatisticsAction
since 5.5. Functionality moved to the confluence-cache-management-plugin.
|
com.atlassian.confluence.it.admin.CacheStatisticsPage |
com.atlassian.confluence.webdriver.rules.CancelAnyEditorRule
since 5.5 use VisitNoopAndCancelAlerts. CancelAnyEditor was a bad approach and now just plainly extends
VisitNoopAndCancelAlertsRule |
com.atlassian.confluence.diff.ChangeChunk
since 5.7
|
com.atlassian.confluence.pageobjects.page.user.ChangePasswordPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.user.ChangePasswordPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.diff.CharacterChunk
since 5.7
|
com.atlassian.confluence.diff.CharLevelDiffer
since 5.7
|
com.atlassian.confluence.pageobjects.page.space.ChooseSpaceThemePage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.space.ChooseSpaceThemePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.theme.ChooseThemeComponent
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.component.theme.ChooseThemeComponent instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.admin.actions.cluster.ClusterConfigurationAction |
com.atlassian.confluence.util.collections.CollectionUtils
since 5.8. It's 2015, ferchrissake.
|
com.atlassian.confluence.pageobjects.component.editor.toolbars.ColorPickerDropdownMenu
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.component.editor.toolbars.ColorPickerDropdownMenu instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.space.ColorSchemePage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.space.ColorSchemePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.util.i18n.CombinedResourceBundle
since 5.6. Use
CombinedResourceBundleFactory |
com.atlassian.confluence.it.Comment
Please use confluence-java-api module instead.
See {com.atlassian.confluence.api.model.content.Content} alternative
|
com.atlassian.confluence.pageobjects.page.content.CommentsSection
in 5.8. Use
CommentsSection instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.setup.ConfigureDatabaseConnectionPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.setup.ConfigureDatabaseConnectionPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.setup.ConfigureDatabasePage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.setup.ConfigureDatabasePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.ConfigureDocThemeAdminPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.admin.ConfigureDocThemeAdminPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.ConfirmPasswordDialog
in 5.8. Use
ConfirmPasswordDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.ConfluenceAboutDialog
in 5.8. Use
ConfluenceAboutDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.ConfluenceAbstractPage
in 5.8. Use
ConfluenceAbstractPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.ConfluenceAbstractPageComponent
in 5.8. Use
ConfluenceAbstractPageComponent instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.ConfluenceAdminHomePage
in 5.8. Use
ConfluenceAdminHomePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.ConfluenceAlaCarteJiraLoginPage
in 5.8. Use
ConfluenceAlaCarteJiraLoginPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.ConfluenceAlaCarteLoginPage
in 5.8. Use
ConfluenceAlaCarteLoginPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.ConfluenceBaseUrlSelector
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.ConfluenceBaseUrlSelector} alternative
|
com.atlassian.confluence.pageobjects.module.ConfluenceComponentSupportModule
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.module.ConfluenceComponentSupportModule instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.ConfluenceContextRootPage
in 5.8. Use
ConfluenceContextRootPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.diff.ConfluenceDiff
since 5.7. See
Differ |
com.atlassian.confluence.event.ConfluenceEventManager
Since 3.3, use
ConfluenceEventPublisherManager |
com.atlassian.confluence.pageobjects.page.ConfluenceForgotPasswordPage
in 5.8. Use
ConfluenceForgotPasswordPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.module.frame.ConfluenceFrameExecutorTemplate
in 5.8. Use
ConfluenceFrameExecutorTemplate instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.header.ConfluenceHeader
in 5.8. Use
ConfluenceHeader instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.htmlunit.ConfluenceHtmlUnitConfig
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.jwebunit.ConfluenceHtmlUnitConfig} alternative
|
com.atlassian.confluence.servlet.ConfluenceHttpServlet
Since 5.5. Use
HttpServlet |
com.atlassian.confluence.renderer.ConfluenceIconManager
since 4.0
|
com.atlassian.confluence.setup.ConfluenceLicenseRegistry
Since 5.6. Use
LicenseService instead. |
com.atlassian.confluence.pageobjects.page.ConfluenceLoginPage
in 5.8. Use
ConfluenceLoginPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.header.ConfluenceMainHeader
in 5.8. Use
ConfluenceMainHeader instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.menu.ConfluenceMenuItem
in 5.8. Use
ConfluenceMenuItem instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.search.lucene.ConfluenceObjectToDocumentConverter
since 3.0. Use
ConfluenceDocumentBuilder instead. |
com.atlassian.confluence.user.ConfluencePropertySetFactory
since 5.5 it's not used/tested anywhere in confluence core codebase. Please use
HibernatePropertySetFactory instead |
com.atlassian.confluence.event.events.admin.ConfluenceReadyEvent
since 4.0 use
DatabaseConfiguredEvent , UpgradeFinishedEvent , or
PluginFrameworkStartedEvent instead |
com.atlassian.confluence.it.rpc.ConfluenceRpc
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.rest.api.ConfluenceRestClient} and {com.atlassian.confluence.test.rpc.api.ConfluenceRpcClient} alternatives
The new rpc and rest clients may not have all the APIs yet - feel free to copy and refactor them over from here as they are needed.
|
com.atlassian.confluence.pageobjects.page.ConfluenceSignupPage
in 5.8. Use
ConfluenceSignupPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.ConfluenceTestedProduct
in 5.8. Use
ConfluenceTestedProduct instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.menu.ConfluenceUserMenu
in 5.8. Use
ConfluenceUserMenu instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.setup.webwork.ConfluenceVelocityContext
Since 3.0. Use
ConfluenceVelocityManager.getConfluenceVelocityContext() instead. |
com.atlassian.confluence.util.ConfluenceVelocityResourceCache
Since 2.9. Use
ConfluenceVelocityResourceCache instead. |
com.atlassian.confluence.plugin.webresource.ConfluenceWebResourceModuleDescriptor
Since 3.4, use
WebResourceModuleDescriptor instead |
com.atlassian.confluence.pageobjects.component.header.ConfluenceWebSudoBanner
in 5.8. Use
ConfluenceWebSudoBanner instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.ConfluenceWebSudoPage
in 5.8. Use
ConfluenceWebSudoPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.search.actions.ContentNameSearchAction
since 5.2. Instead please use the REST endpoint that is provided by the
'Confluence QuickNav' Bundled Plugin. Please use /rest/quicknav/1/search instead. It accepts the exact same arguments
and is thus API compatible with this class. You should be able to swap them out directly.
|
com.atlassian.confluence.content.render.xhtml.model.resource.identifiers.ContextResourceIdentifierConverter
since 5.7. Not used, so no replacement.
|
com.atlassian.confluence.pageobjects.page.content.CopyPage
in 5.8. Use
CopyPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.space.CopySpacePage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.space.CopySpacePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.api.impl.model.validation.CoreServiceExceptionSuppliers
since 5.7, use
ServiceExceptionSupplier instead. |
com.atlassian.confluence.api.impl.model.validation.CoreValidationResult
since 5.7, use
SimpleValidationResult instead. |
com.atlassian.confluence.pageobjects.component.form.CqlComponent
in 5.8. Use
CqlComponent instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.form.CqlFilterSelect
in 5.8. Use
CqlFilterSelect instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.CreateBlog
in 5.8. Use
CreateBlog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.CreateDialog
in 5.8. Use
CreateDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.menu.CreateMenu
in 5.8. Use
CreateMenu instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.CreatePage
in 5.8. Use
CreatePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.space.CreatePageTemplate
in 5.8. Use
CreatePageTemplate instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.spaces.actions.CreateSpaceAction
Since 5.3 - use the new rest APIs from the Create Content plugin
com.atlassian.confluence.plugins.createcontent.rest.SpaceBlueprintResource |
com.atlassian.confluence.security.CrowdDeactivatedUserChecker
since 4.0 use
CrowdDisabledUserManager or
the DisabledUserManager interface instead. |
com.atlassian.confluence.it.usermanagement.CrowdDirectoryConfiguration
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.usermanagement.CrowdDirectoryConfiguration} alternative
|
com.atlassian.confluence.it.usermanagement.CrowdUserManagementHelper
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.usermanagement.CrowdUserManager} alternative
|
com.atlassian.confluence.it.usermanagement.CrowdUserSynchroniser
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.usermanagement.CrowdUserSynchroniser} alternative
|
com.atlassian.confluence.pageobjects.component.header.DarkFeaturesMetaTag
in 5.8. Use
DarkFeaturesMetaTag instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.util.breadcrumbs.DashboardBreadcrumb
since Confluence 5.0, we don't display the Dashboard breadcrumb.
If you keep including the DashboardBreadcrumb, it will be filtered out.
See
BreadcrumbGenerator for more information. |
com.atlassian.confluence.pageobjects.component.dashboard.DashboardEntitiesPanel
in 5.8. Use
DashboardEntitiesPanel instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dashboard.DashboardEntitiesTab
in 5.8. Use
DashboardEntitiesTab instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dashboard.DashboardGetStartedPanel
in 5.8. Use
DashboardGetStartedPanel instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dashboard.DashboardNetworkTab
in 5.8. Use
DashboardNetworkTab instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.DashboardPage
in 5.8. Use
DashboardPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dashboard.DashboardPagesTab
in 5.8. Use
DashboardPagesTab instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dashboard.DashboardPopularStreamContent
in 5.8. Use
DashboardPopularStreamContent instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dashboard.DashboardSpacesTab
in 5.8. Use
DashboardSpacesTab instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dashboard.DashboardUpdatesContent
in 5.8. Use
DashboardUpdatesContent instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dashboard.DashboardUpdatesPanel
in 5.8. Use
DashboardUpdatesPanel instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.Database
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.utils.Database} alternative
|
com.atlassian.confluence.pageobjects.page.setup.DatabaseTypePage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.setup.DatabaseTypePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.plugins.rest.manager.DateEntityHelper
since 4.3. Use DateEntityFactory instead. An interface based equivalent is required to allow for OSGI export to DateEntityHelper does not fit the bill.
|
com.atlassian.confluence.pageobjects.component.form.DatePicker
in 5.8. Use
DatePicker instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.usermanagement.DefaultDirectoryConfiguration
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.usermanagement.DefaultDirectoryConfiguration} alternative
|
com.atlassian.confluence.plugins.like.DefaultLikeSummaryCreator
since 4.3. Like summary creation has been moved to client side. See like-summary-factory.js.
|
com.atlassian.confluence.pageobjects.page.DefaultLogoutPage
in 5.8. Use
DefaultLogoutPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.mail.DefaultMailContentManager
since 4.2. See
MailContentManager . |
com.atlassian.confluence.util.DefaultThumbnailInfoFactory |
com.atlassian.confluence.it.usermanagement.DefaultUserManagementHelper
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.usermanagement.DefaultUserManager} alternative
|
com.atlassian.confluence.user.DefaultUserProfilePictureManager
since 5.7. CONFDEV-28074 User profile related services will be extracted to a plugin.
|
com.atlassian.confluence.user.service.DefaultUserProfileService
since 5.7. CONFDEV-28074 User profile related services will be extracted to a plugin.
|
com.atlassian.confluence.servlet.DelegatingServletManager
Since 5.5, not used.
|
com.atlassian.confluence.user.service.DeleteProfilePictureCommandImpl
since 5.7. CONFDEV-28074 User profile related services will be extracted to a plugin.
|
com.atlassian.confluence.diff.DeltaRanker
since 5.7
|
com.atlassian.confluence.velocity.Deprecated |
com.atlassian.confluence.extra.velocitydeprecation.DeprecatedClass |
com.atlassian.confluence.pageobjects.component.dialog.Dialog
in 5.8. Use
Dialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.labels.DialogLabelSection
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.component.labels.DialogLabelSection instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.menu.DialogMenuItem
in 5.8. Use
DialogMenuItem instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.diff.beans.DiffChunkBean
since 5.7
|
com.atlassian.confluence.diff.marshallers.DiffModelToRenderedClassMapper
since 5.7
|
com.atlassian.confluence.pages.thumbnail.Dimensions
since 5.3 Use
ImageDimensions instead |
com.atlassian.confluence.it.usermanagement.DirectoryNames
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.usermanagement.DirectoryNames} alternative
|
com.atlassian.confluence.plugins.soy.DocLinkFunction
since 5.8. Please use cross product helpUrl function instead.
|
com.atlassian.confluence.it.Draft
Please use confluence-java-api module instead.
See {com.atlassian.confluence.api.model.content.Content} alternative
|
com.atlassian.confluence.pageobjects.page.user.DraftsPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.user.DraftsPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.form.DynamicSelectElement
in 5.8. Use
DynamicSelectElement instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.util.test.EchoAnswer
since 5.6.1, use
AdditionalAnswers.returnsArgAt(int) instead. |
com.atlassian.confluence.pageobjects.page.content.EditAttachmentPage
in 5.8. Use
EditAttachmentPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.EditContentPage
in 5.8. Use
EditContentPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.EditGeneralConfigurationPage
in 5.8. Use
EditGeneralConfigurationPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.EditGlobalPermissionsPage
in 5.8. Use
EditGlobalPermissionsPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.EditGlobalStylesheetPage
in 5.8. Use
EditGlobalStylesheetPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.templates.EditGlobalTemplatePage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.admin.templates.EditGlobalTemplatePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.Editor
in 5.8. Use
Editor instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.editor.EditorAutoComplete
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.component.editor.EditorAutoComplete instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.editor.EditorAutocompleteMacro
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.component.editor.EditorAutocompleteMacro instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.editor.EditorContent
in 5.8. Use
EditorContent instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.editor.EditorEmbeddedImage
in 5.8. Use
EditorEmbeddedImage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.editor.EditorEmbeddedLink
in 5.8. Use
EditorEmbeddedLink instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.editor.toolbars.EditorMainToolbar
in 5.8. Use
EditorMainToolbar instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.EditorPage
in 5.8. Use
EditorPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.EditorPreview
in 5.8. Use
EditorPreview instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.editor.EditorTablePicker
in 5.8. Use
EditorTablePicker instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.EditRestrictedPage
in 5.8. Use
EditRestrictedPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.EditSecurityConfigurationPage
in 5.8. Use
EditSecurityConfigurationPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.space.EditSpacePermissionsPage
in 5.8. Use
EditSpacePermissionsPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.space.EditSpacePermissionsRow
in 5.8. Use
EditSpacePermissionsRow instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.EditSpacesConfigurationPage
in 5.8. Use
EditSpacesConfigurationPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.space.EditSpaceStylesheetPage
in 5.8. Use
EditSpaceStylesheetPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.templates.EditSpaceTemplatePage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.admin.templates.EditSpaceTemplatePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.EditTemplateDescriptionDialog
in 5.8. Use
EditTemplateDescriptionDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.user.EditUserEditorSettingsPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.user.EditUserEditorSettingsPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.user.EditUserProfilePage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.user.EditUserProfilePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.EmailToPageDialog
in 5.8. Use
EmailToPageDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.like.EventPublishingLikeDao
Use
LikeManager instead. Since v4.3. |
com.atlassian.confluence.pageobjects.component.macro.ExpandMacro
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.component.macro.ExpandMacro instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.ExternalGadgetsPage
in 5.8. Use
ExternalGadgetsPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.ExternalImagePanelImageBrowserDialog
in 5.8. Use
ExternalImagePanelImageBrowserDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.plugin.descriptor.web.conditions.ExternalUserManagementEnabledCondition
Since 4.2.7. Use the inverse of
WritableDirectoryExistsCondition . |
com.atlassian.confluence.it.usermanagement.ExternalUserSynchroniser
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.usermanagement.ExternalUserSynchroniser} alternative
|
com.atlassian.confluence.pageobjects.component.FavouritePage
in 5.8. Use
FavouritePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.FavouriteSpace
in 5.8. Use
FavouriteSpace instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.maven.FileMavenDependency
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.plugin.maven.FileMavenDependency} alternative
|
com.atlassian.confluence.pages.persistence.dao.FileSystemAttachmentDataDao
Since 5.5 Use
FileSystemAttachmentDataDao |
com.atlassian.confluence.pageobjects.component.editor.toolbars.FormatDropdownMenu
in 5.8. Use
FormatDropdownMenu instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.Forms
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.jwebunit.usermanagement.Forms} alternative
|
com.atlassian.confluence.pageobjects.component.admin.GadgetFeedsAdminTab
in 5.8. Use
GadgetFeedsAdminTab instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.admin.GadgetSpecificationsAdminTab
in 5.8. Use
GadgetSpecificationsAdminTab instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.macros.GalleryMacro
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.content.macros.GalleryMacro instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.renderer.v2.macros.GenericVelocityMacro
as of 4.0. Replaced by
GenericVelocityMacro . |
com.atlassian.confluence.plugin.descriptor.web.conditions.GlobalAdministratorOnlyCondition
since 2.7. If the link or operation protected by this condition has the potential to compromise the
security of the system, please use
SystemAdministratorCondition instead, otherwise, use ConfluenceAdministratorCondition .
To err on the side of more security, we are assuming plugin developers intended a restriction to the most powerful group of administrators.
Hence this deprecated class will inherit the permission checks of SystemAdministratorCondition .
This class has been reintroduced to prevent problems with the approvals plugin.
NOTE: This is currently used by the Gliffy plugin. To be removed when they do. CONFDEV-15165. |
com.atlassian.confluence.pageobjects.page.admin.templates.GlobalTemplatesPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.admin.templates.GlobalTemplatesPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.Group
Please use confluence-java-api module instead.
See {com.atlassian.confluence.api.model.people.Group} alternative
|
com.atlassian.confluence.pageobjects.component.popup.GroupPickerPopup
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.component.popup.GroupPickerPopup instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.cluster.HashClusterNameResolver
since 5.5.1. Use
ClusterUtils instead} |
com.atlassian.confluence.pageobjects.component.menu.HelpMenu
in 5.8. Use
HelpMenu instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pages.persistence.dao.HierarchicalContentFileSystemHelper
Since 5.5. Use
HierarchicalContentFileSystemHelper . |
com.atlassian.confluence.pages.persistence.dao.HierarchicalFileSystemAttachmentDataDao
Since 5.5 Use
FileSystemAttachmentDataDao |
com.atlassian.confluence.util.I18NSupport
since 5.2 Use
I18NBeanFactory.getI18NBean() |
com.atlassian.confluence.pages.persistence.dao.IdMultiPartHashGenerator
Since 5.5 Use
IdMultiPartHashGenerator |
com.atlassian.confluence.pageobjects.component.dialog.ImageAttributesPanel
in 5.8. Use
ImageAttributesPanel instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.ImageBrowserDialog
in 5.8. Use
ImageBrowserDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.ImagePropertiesDialog
in 5.8. Use
ImagePropertiesDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.editor.ImagePropertyPanel
in 5.8. Use
ImagePropertyPanel instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.event.events.search.didyoumean.IndexBuildCompleteEvent |
com.atlassian.confluence.search.lucene.IndexOptimizer
since 5.2. Optimize index (i.e. force merging to 1 segment is no longer required) CONFDEV-16098
|
com.atlassian.confluence.it.usermanagement.IndraWebClient
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.usermanagement.cloud.IndraWebClient} alternative
|
com.atlassian.confluence.pageobjects.component.editor.toolbars.InsertDropdownMenu
in 5.8. Use
InsertDropdownMenu instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.InviteUsersPanel
in 5.8. Use
InviteUsersPanel instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.selenium.client.InviteUsersPanel
since 5.7 please use com.atlassian.confluence.pageobjects.page.admin.InviteUsersPanel
|
com.atlassian.confluence.util.io.IOUtils
Since 3.0
|
com.atlassian.confluence.pageobjects.JavascriptTimedQueryFactory
in 5.8. Use
JavascriptTimedQueryFactory instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.usermanagement.JiraWebClient
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.usermanagement.cloud.JiraWebClient} alternative
|
com.atlassian.confluence.json.parser.JSONArray
since 2.10 Use the json.objects classes.
A JSONArray is an ordered sequence of values. Its external text form is a
string wrapped in square brackets with commas separating the values. The
internal form is an object having
get and opt
methods for accessing the values by index, and put methods for
adding or replacing values. The values can be any of these types:
Boolean , JSONArray , JSONObject ,
Number , String , or the
JSONObject.NULL object .
The constructor can convert a JSON text into a Java object. The
A
The generic
The texts produced by the
|
com.atlassian.confluence.json.parser.JSONObject
Since 5.4 Use 3rd-party JSON library.
|
com.atlassian.confluence.json.parser.JSONTokener
since 2.10 Use the json.objects classes.
A JSONTokener takes a source string and extracts characters and tokens from
it. It is used by the JSONObject and JSONArray constructors to parse
JSON source strings.
|
com.atlassian.confluence.pageobjects.component.dialog.KeyboardShortcutHelperDialog
in 5.8. Use
KeyboardShortcutHelperDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.KeyboardShortcuts
in 5.8. Use
KeyboardShortcuts instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.Label
Please use confluence-java-api module instead.
See {com.atlassian.confluence.api.model.content.Label} alternative
|
com.atlassian.confluence.pageobjects.component.dialog.LabelsDialog
in 5.8. Use
LabelsDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.search.LabelSearchPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.search.LabelSearchPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.search.v2.searchfilter.LastModifierSearchFilter
since 5.2. Use
LastModifierUserSearchFilter instead. |
com.atlassian.confluence.search.v2.lucene.mapper.LastModifierSearchFilterMapper
since 5.2. Use
LastModifierUserSearchFilterMapper instead. |
com.atlassian.confluence.util.LazyComponentReference
since 5.3 Use
LazyComponentReference . |
com.atlassian.confluence.spring.LazyInitByDefaultBeanDefinitionDocumentReader
since 5.7 - No longer used.
|
com.atlassian.confluence.plugin.descriptor.web.conditions.LdapUserManagementEnabledCondition
since 3.5 this no longer works properly and is no longer used in the application
|
com.atlassian.confluence.pageobjects.page.setup.LicensePage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.setup.LicensePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.likes.LikeSection
in 5.8. Use
LikeSection instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.internal.pagination.LimitedRequestImpl
since 5.6 use com.atlassian.confluence.api.pagination.LimitedRequestImpl
|
com.atlassian.confluence.diff.LineChunk
since 5.7
|
com.atlassian.confluence.diff.LineLevelDiffer
since 5.7. See
Differ |
com.atlassian.confluence.diff.LineRanker
since 5.7
|
com.atlassian.confluence.pageobjects.component.dialog.LinkBrowserDialog
in 5.8. Use
LinkBrowserDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.editor.LinkPropertyPanel
in 5.8. Use
LinkPropertyPanel instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.space.ListPageTemplates
in 5.8. Use
ListPageTemplates instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.core.ListQuery
since 4.2 use the
SearchManager |
com.atlassian.confluence.pageobjects.page.setup.LoadContentPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.setup.LoadContentPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.maven.LocalMavenDependency
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.plugin.maven.LocalMavenDependency} alternative
|
com.atlassian.confluence.concurrent.LockAdapter
Since 5.6, use
ClusterLockService for locking which returns instances
of Lock |
com.atlassian.confluence.concurrent.LockOperation
Since 5.6. Use
ClusterLockService in conjunction with
ManagedLock.withLock(java.util.concurrent.Callable) . |
com.atlassian.confluence.concurrent.LockOperationWithoutResult
Since 5.6. Use
ClusterLockService in conjunction with
ManagedLock.withLock(Runnable) . |
com.atlassian.confluence.util.longrunning.LongRunningTaskUtils
since 4.0. This class is spun from purest evil. Use the LongRunningTaskManager directly instead.
|
com.atlassian.confluence.search.v2.lucene.LuceneSubsetResultFilter
since 5.5. To limit search results to an offset and count, construct a
com.atlassian.confluence.search.v2.ISearch#() with the required offset and count. |
com.atlassian.confluence.pageobjects.component.dialog.MacroBrowserDialog
in 5.8. Use
MacroBrowserDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.MacroBrowserPreview
in 5.8. Use
MacroBrowserPreview instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.MacroForm
in 5.8. Use
MacroForm instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.MacroItem
in 5.8. Use
MacroItem instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.editor.MacroPlaceholder
in 5.8. Use
MacroPlaceholder instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.editor.MacroPropertyPanel
in 5.8. Use
MacroPropertyPanel instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.macro.count.MacroViewEventPublisher
since 5.8. Replaced by
MarshallerMetricsAnalyticsEventPublisher |
com.atlassian.confluence.mail.Mail
since 4.2. Mail archiving is now managed entirely by the mail archiving plugin.
|
com.atlassian.confluence.pageobjects.page.space.MailboxImportPage
in 5.8. Use
MailboxImportPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.mail.MailHelper |
com.atlassian.quartz.jobs.MailQueueFlushJob
since 3.0
|
com.atlassian.confluence.pageobjects.page.admin.ManageAddonsPage
in 5.8. Use
ManageAddonsPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.ManageWatchersDialog
in 5.8. Use
ManageWatchersDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
bucket.core.persistence.hibernate.MappingResources
since 5.6
|
com.atlassian.confluence.it.maven.MavenDependencyHelper
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.plugin.maven.MavenDependencyHelper} alternative
|
com.atlassian.confluence.it.maven.MavenUploadablePlugin
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.plugin.maven.MavenUploadablePlugin} alternative
|
com.atlassian.confluence.pageobjects.component.popup.MediaSuggestionPopup
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.component.popup.MediaSuggestionPopup instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.editor.MentionsMenu
in 5.8. Use
MentionsMenu instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.search.scope.ModifiedInLastDaysScope
since 5.2.
|
com.atlassian.confluence.pageobjects.component.editor.toolbars.MoreFormattingDropdownMenu
in 5.8. Use
MoreFormattingDropdownMenu instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.MoveBlogPostDialog
in 5.8. Use
MoveBlogPostDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.MovePageDialog
in 5.8. Use
MovePageDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.form.MultiLabelPicker
in 5.8. Use
MultiLabelPicker instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.form.MultiPicker
in 5.8. Use
MultiPicker instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.form.MultiSpacePicker
in 5.8. Use
MultiSpacePicker instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.search.lucene.MultiThreadedIndexRebuilder
since 5.2. Use
ConfluenceReIndexer instead. |
com.atlassian.confluence.pageobjects.component.form.MultiUserPicker
in 5.8. Use
MultiUserPicker instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.content.render.xhtml.NastyUtilitiesWhichWillBeMadeRedundant
Since 4.1. Use
ConversionContext.getPageContext() . |
com.atlassian.confluence.cache.option.None
Since 5.6. Use
Option.none() |
com.atlassian.confluence.pageobjects.page.NoOpPage
in 5.8. Use
NoOpPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.NotFoundPage
in 5.8. Use
NotFoundPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.plugins.like.notifications.NotificationListener
since 5.6
|
com.atlassian.confluence.plugin.descriptor.web.conditions.NotSharedModeCondition
Since 5.1. "Shared mode" no longer supported.
|
com.atlassian.confluence.pageobjects.page.content.OfficeConnectorPreviewPage
in 5.8. Use
OfficeConnectorPreviewPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.macros.OfficeConnectorSlidePreviewMacro
in 5.8. Use
OfficeConnectorSlidePreviewMacro instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.usermanagement.OnDemandCrowdDirectoryConfiguration
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.usermanagement.OnDemandCrowdDirectoryConfiguration} alternative
|
com.atlassian.confluence.search.lucene.tasks.OptimizeIndexTask
since 5.2. Optimize index (i.e. force merging to 1 segment is no longer required) CONFDEV-16098
|
com.atlassian.confluence.cache.option.OptionalReadThroughCache
Since 5.6 Use
CacheFactory.getCache(String, com.atlassian.cache.CacheLoader) |
com.atlassian.confluence.it.Page
Please use confluence-java-api module instead.
See {com.atlassian.confluence.api.model.content.Content} alternative
|
com.atlassian.confluence.core.PageContentEntityObject
Since 4.0 This used to be implemented by Comment, but is no longer necessary.
|
com.atlassian.confluence.event.events.content.page.async.PageCreatedEvent |
com.atlassian.confluence.event.events.content.page.async.PageEditedEvent |
com.atlassian.confluence.mail.notification.listeners.PageEventToAsyncPageEventTransformerListener
since 5.3 this class is intermittent bridge for safe migration from sync to async event processing
and not intended to long term usage.
In next releases sync version will be removed and async version of events will be published from PageManager
|
com.atlassian.confluence.pageobjects.page.content.PageInfo
in 5.8. Use
PageInfo instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.labels.PageLabelsSection
in 5.8. Use
PageLabelsSection instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.editor.PageLayout2Toolbar
in 5.8. Use
PageLayout2Toolbar instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.event.events.content.page.async.PageMovedEvent |
com.atlassian.confluence.pageobjects.component.dialog.PageOrderingRootTree
in 5.8. Use
PageOrderingRootTree instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.menu.PageRedirectMenuItem
in 5.8. Use
PageRedirectMenuItem instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.PageRestrictionsDialog
in 5.8. Use
PageRestrictionsDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.space.PagesCollectorPage
in 5.8. Use
PagesCollectorPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.PageTemplateWizard
in 5.8. Use
PageTemplateWizard instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.event.events.content.page.async.PageTrashedEvent |
com.atlassian.confluence.pageobjects.page.PeopleDirectoryPage
in 5.8. Use
PeopleDirectoryPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.security.PermissionCheckDispatcher
since 2.7 see
PermissionManager |
com.atlassian.confluence.search.v2.query.PermittedSpacesQuery
since 3.0. Please use
SpacePermissionsSearchFilter instead. |
com.atlassian.confluence.pageobjects.page.admin.PluginsPage
in 5.8. Use
PluginsPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.templates.PluginTemplateInfo
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.admin.templates.PluginTemplateInfo instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.PopMailConfigPage
in 5.8. Use
PopMailConfigPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.util.ProfilePicture
since 2.9. Functionality has moved to the UserProfileService.
|
com.atlassian.confluence.util.profiling.ProfilingPageFilter
since 5.8. Use
ProfilingSiteMeshFilter instead. |
com.atlassian.confluence.pageobjects.component.dialog.ProjectShortcutsDialog
in 5.8. Use
ProjectShortcutsDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.PropertiesManager
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.properties.PropertiesManager} alternative
|
com.atlassian.confluence.it.PropertiesManagerFactory
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.properties.PropertiesManagerFactory} alternative
|
com.atlassian.confluence.pageobjects.component.editor.PropertyPanel
in 5.8. Use
PropertyPanel instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.QuickReloadDialog
in 5.8. Use
QuickReloadDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dropdown.QuickSearch
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.component.dropdown.QuickSearch instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dropdown.QuickSearchSuggestions
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.component.dropdown.QuickSearchSuggestions instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.RandomnessHandler
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.utils.RandomnessHandler} alternative
|
com.atlassian.confluence.pageobjects.page.admin.RebuildAncestorTablePage
in 5.8. Use
RebuildAncestorTablePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.rpc.soap.beans.RemotePermission
Since 2.7. use
RemoteContentPermission instead |
com.atlassian.confluence.pageobjects.component.dialog.RemoveTemplateDialog
in 5.8. Use
RemoveTemplateDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.RenderedContent
in 5.8. Use
RenderedContent instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.ReorderTree
in 5.8. Use
ReorderTree instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.cluster.RepeatableTaskRunner
Since 5.5 Use
PollingChangeTracker |
com.atlassian.confluence.util.ResizableImage
Since 5.5, not used.
|
com.atlassian.confluence.util.Resource
since 3.1 Resources are no longer used in Confluence. This class remains as it is referenced in a number
of upgrade tasks.
|
com.atlassian.confluence.it.ResponseXPath
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.jwebunit.usermanagement.ResponseXPath} alternative
|
com.atlassian.confluence.xml.SafeXmlParserFactory |
com.atlassian.confluence.search.v2.Search
since 3.0. Use
ContentSearch instead. |
com.atlassian.confluence.pageobjects.component.editor.SearchAndReplaceToolbar
in 5.8. Use
SearchAndReplaceToolbar instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.search.v2.lucene.SearcherAction
since 5.5. Use
SearcherWithTokenAction instead. |
com.atlassian.confluence.pageobjects.page.admin.SearchIndexesPage
in 5.8. Use
SearchIndexesPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.search.SearchPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.search.SearchPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.SearchPanelInImageBrowserDialog
in 5.8. Use
SearchPanelInImageBrowserDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.search.actions.SearchQueryBean
since 4.1 - this class has not been part of the recommended search API since 2.9 and should be removed ASAP.
|
com.atlassian.confluence.pageobjects.page.SearchResultPage
in 5.8. Use
SearchResultPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.search.actions.SearchResultWithExcerpt
since 4.1. Use
SearchResult objects instead. |
com.atlassian.confluence.pageobjects.page.setup.SelectBundlePage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.setup.SelectBundlePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.setup.SelectUserManagementPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.setup.SelectUserManagementPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.user.service.SetProfilePictureFromFilenameCommand
since 5.7. CONFDEV-28074 User profile related services will be extracted to a plugin.
|
com.atlassian.confluence.user.service.SetProfilePictureFromImageCommandImpl
since 5.7. CONFDEV-28074 User profile related services will be extracted to a plugin.
|
com.atlassian.confluence.pageobjects.page.setup.SetupCompletePage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.setup.SetupCompletePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.setup.SetupSystemAdministratorPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.setup.SetupSystemAdministratorPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.plugin.SimplePlugin
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.plugin.SimplePlugin} alternative
|
com.atlassian.confluence.pages.thumbnail.renderer.SimpleThresholdPredicate
since 5.3. Use
SimpleImageRenderPredicate . |
com.atlassian.confluence.pageobjects.page.space.SiteExportResult
in 5.8. Use
SiteExportResult instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.cache.option.Some
since 5.6 Use
Option.some(Object) |
com.atlassian.confluence.pageobjects.page.content.SourceEditor
in 5.8. Use
SourceEditor instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.Space
Please use confluence-java-api module instead.
See {com.atlassian.confluence.api.model.content.Space} alternative
|
com.atlassian.confluence.pageobjects.page.SpaceDirectoryPage
in 5.8. Use
SpaceDirectoryPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.space.SpaceExportTree
in 5.8. Use
SpaceExportTree instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.space.SpaceHtmlExport
in 5.8. Use
SpaceHtmlExport instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.menu.SpacesMenu
in 5.8. Use
SpacesMenu instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.templates.SpaceTemplatesPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.admin.templates.SpaceTemplatesPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.spaces.SpaceUtils
since 5.2
|
com.atlassian.confluence.pageobjects.page.space.SpaceXmlExport
in 5.8. Use
SpaceXmlExport instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.admin.actions.cluster.StartClusterAction |
com.atlassian.confluence.pageobjects.page.setup.StartSetupPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.setup.StartSetupPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.macro.StatusMacro
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.component.macro.StatusMacro instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.search.v2.filter.SubsetResultFilter
since 5.5. To limit search results to a certain offset and maxResults use the following instead:
int startOffset = 0; |
com.atlassian.confluence.plugins.dailysummary.analytics.SummaryEmailTrackingServlet |
com.atlassian.confluence.pageobjects.component.supporttools.SupportRequestTab
in 5.8. Use
SupportRequestTab instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.SupportToolsPage
in 5.8. Use
SupportToolsPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.SymbolDialog
in 5.8. Use
SymbolDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.plugin.descriptor.web.conditions.SystemAdministratorOrSuperUserCondition
since 3.5 use
SystemAdministratorCondition because this one is now inaccurately named |
com.atlassian.confluence.it.resource.TempDirectory
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.utils.TempDirectory} alternative
|
com.atlassian.confluence.pageobjects.page.admin.templates.TemplateInfo
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.admin.templates.TemplateInfo instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.TestProperties
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.properties.TestProperties} alternative
|
com.atlassian.confluence.it.TestUserFactory
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.usermanagement.TestUserFactory} alternative
|
com.atlassian.confluence.util.TimePeriod
Since 5.4. Use
Period . |
com.atlassian.confluence.pageobjects.component.header.TitleText
in 5.8. Use
TitleText instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.ToggleFavourites
in 5.8. Use
ToggleFavourites instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.menu.ToolsMenu
in 5.8. Use
ToolsMenu instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.trace.TraceContext
in 5.8. Use
TraceContext instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.trace.Tracer
in 5.8. Use
Tracer instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
bucket.core.persistence.hibernate.schema.TransientHibernateHandle
since Confluence 4.2 this has been moved to
com.atlassian.confluence.core.persistence.hibernate.TransientHibernateHandle, which currently extends
this class.
|
com.atlassian.confluence.content.service.page.TrashPageCommandImpl
since 5.8. Use
DeletePageCommand instead |
com.atlassian.confluence.util.http.httpclient.TrustedTokenAuthenticator.TrustedConnectionStatus
As of Confluence 2.10, use
TrustedConnectionStatus |
com.atlassian.confluence.pages.persistence.dao.UpdateAttachmentsOnFilesystemOnPageMoveListener
Since 5.5 Use
UpdateAttachmentsOnFilesystemOnPageMoveListener |
com.atlassian.confluence.upgrade.UpgradeUtils
since 3.5.9 Use
HibernateDdlExecutor and associated
DdlCommand s, or HibernateConfig
if your code still needs to know which DB type its using. |
com.atlassian.confluence.pages.UploadedResource
since 3.1. Use
UploadedResource instead. |
com.atlassian.confluence.pageobjects.page.admin.UPMAuditLogPage
in 5.8. Use
UPMAuditLogPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.UPMCompatibilityCheckPage
in 5.8. Use
UPMCompatibilityCheckPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.User
Please use confluence-java-api module instead.
See {com.atlassian.confluence.api.model.people.User} alternative
|
com.atlassian.confluence.plugin.descriptor.web.conditions.user.UserCanUseConfluenceCondition
since 5.0. Use
TargetUserCanUseConfluenceCondition or RemoteUserCanUseConfluenceCondition |
com.atlassian.confluence.it.admin.UserDirectories
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.jwebunit.usermanagement.UserDirectories} alternative
|
com.atlassian.confluence.it.admin.UserDirectory
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.jwebunit.usermanagement.UserDirectory} alternative
|
bucket.user.UserFilter
Since 5.5. No longer used.
|
com.atlassian.confluence.plugin.descriptor.web.conditions.user.UserFollowingTargetCondition
since 3.1 use
FollowingTargetUserCondition |
com.atlassian.confluence.pageobjects.component.popup.UserHoverPopup
in 5.8. Use
UserHoverPopup instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.popup.UserPickerPopup
in 5.8. Use
UserPickerPopup instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.macro.UserProfileMacro
in 5.8. Use
UserProfileMacro instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.admin.users.UsersAdmin
in 5.8. Use
UsersAdmin instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.search.actions.UserSearchAction
since 3.3. Use REST user search API instead.
|
com.atlassian.confluence.pageobjects.component.dialog.UserStatusDialog
in 5.8. Use
UserStatusDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.form.UserWatcherPicker
in 5.8. Use
UserWatcherPicker instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.user.UserWatchesPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.user.UserWatchesPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new
README. |
com.atlassian.confluence.it.UserWithKey
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.api.model.person.UserWithDetails} alternative
|
com.atlassian.confluence.it.rpc.VersionedRpcBaseResolver
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.rpc.VersionedRpcBaseResolver} alternative
|
com.atlassian.confluence.pageobjects.page.content.ViewAttachmentsPage
in 5.8. Use
ViewAttachmentsPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pages.actions.ViewDraftAttachmentsAction
since 5.7. No replacement.
|
com.atlassian.confluence.pageobjects.component.dialog.ViewDraftDiffDialog
in 5.8. Use
ViewDraftDiffDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.ViewGlobalStylesheetPage
in 5.8. Use
ViewGlobalStylesheetPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.ViewGroupMembersAdminPage
in 5.8. Use
ViewGroupMembersAdminPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.ViewMailServersPage
in 5.8. Use
ViewMailServersPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.ViewPage
in 5.8. Use
ViewPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.ViewPageAddComment
in 5.8. Use
ViewPageAddComment instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.ViewPageAnonymous
in 5.8. Use
ViewPageAnonymous instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.ViewPageDiff
in 5.8. Use
ViewPageDiff instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.ViewPageHistory
in 5.8. Use
ViewPageHistory instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.space.ViewPageTemplate
in 5.8. Use
ViewPageTemplate instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.user.ViewProfilePage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.user.ViewProfilePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.ViewRecentBlogPosts
in 5.8. Use
ViewRecentBlogPosts instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.content.ViewRestrictedPage
in 5.8. Use
ViewRestrictedPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.ViewSpacesConfigurationPage
in 5.8. Use
ViewSpacesConfigurationPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.space.ViewSpaceStylesheetPage
in 5.8. Use
ViewSpaceStylesheetPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.spaces.actions.ViewSpaceSummaryAdminAction
since 5.0
|
com.atlassian.confluence.pageobjects.page.space.ViewSpaceSummaryPage
in 5.8. Use
ViewSpaceSummaryPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.space.ViewSpaceTrashPage
in 5.8. Use
ViewSpaceTrashPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.admin.templates.ViewTemplatePage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.admin.templates.ViewTemplatePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.user.ViewUserProfilePage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.user.ViewUserProfilePage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.user.ViewUserSettingsPage
in 5.8. Use
com.atlassian.confluence.webdriver.pageobjects.page.user.ViewUserSettingsPage instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.cache.WarnBeforeMethodAdvice
Since 5.5. No replacement.
|
com.atlassian.confluence.pageobjects.page.content.WatchDialog
in 5.8. Use
WatchDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.WebDriverLink
in 5.8. Use
WebDriverLink instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.WebdriverUtils
in 5.8. Use
WebdriverUtils instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.event.events.security.WebLoginEvent
since 5.0. use
LoginEvent instead. |
com.atlassian.confluence.it.WebTesterFactory
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.jwebunit.WebTesterFactory} alternative
|
com.atlassian.confluence.pageobjects.component.dashboard.WelcomeVideoDialog
in 5.8. Use
WelcomeVideoDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.component.dialog.WhatsNewDialog
in 5.8. Use
WhatsNewDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.importexport.impl.WikiExporter
since 4.0. There isn't wiki formatted text for export any longer.
|
com.atlassian.confluence.pageobjects.component.dialog.WikiMarkupDialog
in 5.8. Use
WikiMarkupDialog instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.diff.WordChunk
since 5.7
|
com.atlassian.confluence.diff.WordLevelDiffer
since 5.7
|
com.atlassian.confluence.pageobjects.component.header.WorkboxHeaderItem
in 5.8. Use
WorkboxHeaderItem instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.search.v2.lucene.WrappedHitImpl
since 5.2. Hit abstraction no longer exists in lucene 4.2.x.
|
com.atlassian.confluence.content.render.xhtml.XhtmlCleaner.AppliedRuleDescription
since 5.1.4 See
StorageFormatCleaner instead. |
com.atlassian.confluence.content.render.xhtml.XhtmlCleaner.Result
since 5.1.4 See
StorageFormatCleaner instead. |
com.atlassian.confluence.util.XslUtil
Since Confluence 4.0. See
XslTransformer instead. |
com.atlassian.confluence.setup.xstream.XStreamFactoryBean
since 2.3, use
XStreamManager instead. |
Enum and Description |
---|
com.atlassian.confluence.pageobjects.ConfluenceTestedProduct.LoginType |
com.atlassian.confluence.diff.DiffType
since 5.7
|
com.atlassian.confluence.it.usermanagement.Directory
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.usermanagement.DirectoryConfigurationFactory} alternative
|
com.atlassian.confluence.it.usermanagement.DirectoryConfigurationCapability
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.usermanagement.DirectoryConfigurationCapability} alternative
|
com.atlassian.confluence.pageobjects.component.editor.EditorMessages
in 5.8. Use
EditorMessages instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.pageobjects.page.space.ExportType
in 5.8. Use
ExportType instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
com.atlassian.confluence.it.GlobalPermission
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.rpc.api.permissions.GlobalPermission} alternative
|
com.atlassian.confluence.diff.renderer.HtmlChangeChunkRenderer
since 5.7
|
com.atlassian.confluence.diff.renderer.HtmlCharacterChunkRenderer
since 5.7
|
com.atlassian.confluence.diff.renderer.HtmlLineChunkRenderer
since 5.7
|
com.atlassian.confluence.diff.renderer.HtmlWordChunkRenderer
since 5.7
|
com.atlassian.confluence.it.admin.LdapDirectoryPermission
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.jwebunit.usermanagement.LdapDirectoryPermission} alternative
|
com.atlassian.confluence.it.admin.NewDirectoryType
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.jwebunit.usermanagement.NewDirectoryType} alternative
|
com.atlassian.confluence.selenium.client.PageOrderingTree.TreePosition
since 5.7, use
TreePosition |
com.atlassian.confluence.it.SpacePermission
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.api.permissions.SpacePermission} alternative
|
com.atlassian.confluence.diff.renderer.StaticHtmlChangeChunkRenderer
since 5.7
|
com.atlassian.confluence.pageobjects.component.dialog.TreePosition
in 5.8. Use
TreePosition instead from
maven module com.atlassian.confluence:confluence-webdriver-pageobjects . See the new README. |
Exceptions and Description |
---|
com.atlassian.confluence.json.parser.JSONException
since 2.10 Use the json.objects classes.
The JSONException is thrown by the JSON.org classes then things are amiss.
|
com.atlassian.confluence.it.rpc.RpcRuntimeException
Please use confluence-test-utils module instead.
See {com.atlassian.confluence.test.rpc.RpcRuntimeException} alternative
|
com.atlassian.confluence.pages.persistence.dao.UpdateAttachmentsOnFileSystemException
Since 5.5 Use
UpdateAttachmentsOnFileSystemException |
Annotation Type and Description |
---|
com.atlassian.confluence.security.websudo.WebSudoNotRequired
since 3.4 - please use
WebSudoNotRequired instead. |
com.atlassian.confluence.security.websudo.WebSudoRequired
since 3.4 - please use
WebSudoRequired instead. |
Enum Constant and Description |
---|
com.atlassian.hibernate.HibernateObjectDao.Cacheability.CACHEABLE
since 5.8 - Hibernate query caching isn't cluster-friendly and should be avoided
|
com.atlassian.confluence.it.SpacePermission.PAGE_EXPORT
since 5.0
|
Copyright © 2003–2015 Atlassian. All rights reserved.
View cookie preferences