Deprecated API


Contents
Deprecated Interfaces
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.pages.BreadcrumbsManager
          use GlobalHelper instead to retrieve breadcrumbs and PageHelper to retrieve ellipsis breadcrumbs. 
com.atlassian.confluence.event.EventListener
          Old interface! Please use EventListener for your event listeners 
com.atlassian.confluence.json.JSONAction
          - 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
          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.util.ResourceManager
          since 2.8, use attachment manager to store resources associated with pages. ResourceManager does not work in cluster. 
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). 
 

Deprecated Classes
com.atlassian.confluence.plugin.descriptor.web.conditions.AbstractConfluenceCondition
          since 2.8 use BaseConfluenceCondition, which no longer has a dependency on the abomination which is GlobalHelper. 
com.atlassian.confluence.pages.actions.AbstractEditAttachedFileAction
           
com.atlassian.confluence.pages.actions.AbstractFileAttachmentAction
           
com.atlassian.confluence.security.actions.AbstractGlobalPermissionsAction
           
com.atlassian.renderer.macro.macros.AbstractHtmlGeneratingMacro
            
com.atlassian.confluence.renderer.radeox.macros.include.AbstractHttpRetrievalMacro
          Use BaseHttpRetrievalMacro, which uses the correct version of the Renderer API. 
com.atlassian.confluence.pages.actions.AbstractPageChangeAction
           
com.atlassian.confluence.plugin.descriptor.web.conditions.AbstractPermissionCondition
          since 2.8 use BasePermissionCondition 
com.atlassian.confluence.security.actions.AbstractSpacePermissionsAction
           
com.atlassian.confluence.pages.thumbnail.AbstractThumbnailManager
          since 2.7. Please use DefaultThumbnailManager instead. 
com.atlassian.confluence.setup.BootstrapUtils
          since 2.3 use BootstrapUtils 
com.atlassian.confluence.pages.ChildPositionComparator
          use Page.CHILD_POSITION_COMPARATOR A comparator used to sort pages based on the Page Ordering sort rules.

This comparator will compare the position of the two pages with null smaller than anything else. If that comparison results in 0 a title based "natural" sort will be used. For details on the Natural Sort algorithm see the NaturalStringComparator. 

com.atlassian.confluence.util.ConfluenceVelocityResourceCache
          Since 2.9. Use ConfluenceVelocityResourceCache instead. 
com.atlassian.confluence.pages.DefaultBreadcrumbsManager
          use GlobalHelper instead to retrieve breadcrumbs and PageHelper to retrieve ellipsis breadcrumbs. 
com.atlassian.confluence.util.DefaultResourceManager
          see the deprecation warning in the ResourceManager interface. 
com.atlassian.confluence.pages.thumbnail.DelegatorThumbnailManager
          since 2.7. Please use DefaultThumbnailManager instead. We only have one implementation, so this delegation class is not needed. 
com.atlassian.confluence.util.ajax.ErrorResponseException
          since 2.9 use normal control flow instead of exceptions. 
com.atlassian.confluence.pages.actions.ExportWordPageAction
           
com.atlassian.confluence.search.lucene.filter.FiltersContainer
          since 2.10. The introduction of ChainedFilter into Lucene has made this class redundant. 
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 SystemAdministratorOrSuperUserCondition 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 SystemAdministratorOrSuperUserCondition. 
com.atlassian.confluence.importexport.actions.ImportMoinMoinAction
          since 2.7. Please use the Universal Wiki Converter (http://confluence.atlassian.com/x/R8IC). 
com.atlassian.confluence.json.parser.JSONArray
          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 toString method converts to JSON text.

A get method returns a value if one can be found, and throws an exception if one cannot be found. An opt method returns a default value instead of throwing an exception, and so is useful for obtaining optional values.

The generic get() and opt() methods return an object which you can cast or query for type. There are also typed get and opt methods that do type checking and type coersion for you.

The texts produced by the toString methods strictly conform to JSON syntax rules. The constructors are more forgiving in the texts they will accept:

  • An extra , (comma) may appear just before the closing bracket.
  • The null value will be inserted when there is , (comma) elision.
  • Strings may be quoted with ' (single quote).
  • Strings do not need to be quoted at all if they do not begin with a quote or single quote, and if they do not contain leading or trailing spaces, and if they do not contain any of these characters: { } [ ] / \ : , = ; # and if they do not look like numbers and if they are not the reserved words true, false, or null.
  • Values can be separated by ; (semicolon) as well as by , (comma).
  • Numbers may have the 0- (octal) or 0x- (hex) prefix.
  • Comments written in the slashshlash, slashstar, and hash conventions will be ignored.
 
com.atlassian.confluence.json.parser.JSONObject
          Use the json.objects classes. A JSONObject is an unordered collection of name/value pairs. Its external form is a string wrapped in curly braces with colons between the names and values, and commas between the values and names. The internal form is an object having get and opt methods for accessing the values by name, and put methods for adding or replacing values by name. The values can be any of these types: Boolean, JSONArray, JSONObject, Number, String, or the JSONObject.NULL object. A JSONObject constructor can be used to convert an external form JSON text into an internal form whose values can be retrieved with the get and opt methods, or to convert values into a JSON text using the put and toString methods. A get method returns a value if one can be found, and throws an exception if one cannot be found. An opt method returns a default value instead of throwing an exception, and so is useful for obtaining optional values.

The generic get() and opt() methods return an object, which you can cast or query for type. There are also typed get and opt methods that do type checking and type coersion for you.

The put methods adds values to an object. For example,

     myString = new JSONObject().put("JSON", "Hello, World!").toString();
produces the string {"JSON": "Hello, World"}.

The texts produced by the toString methods strictly conform to the JSON sysntax rules. The constructors are more forgiving in the texts they will accept:

  • An extra , (comma) may appear just before the closing brace.
  • Strings may be quoted with ' (single quote).
  • Strings do not need to be quoted at all if they do not begin with a quote or single quote, and if they do not contain leading or trailing spaces, and if they do not contain any of these characters: { } [ ] / \ : , = ; # and if they do not look like numbers and if they are not the reserved words true, false, or null.
  • Keys can be followed by = or => as well as by :.
  • Values can be followed by ; (semicolon) as well as by , (comma).
  • Numbers may have the 0- (octal) or 0x- (hex) prefix.
  • Comments written in the slashshlash, slashstar, and hash conventions will be ignored.
 
com.atlassian.confluence.json.parser.JSONTokener
          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.util.PageComparator
            
com.atlassian.confluence.upgrade.upgradetask.PagePropertiesUpgradeTask
          no longer required. 
com.atlassian.confluence.security.PermissionCheckDispatcher
          since 2.7 see PermissionManager 
com.atlassian.confluence.util.ProfilePicture
          since 2.9. Functionality has moved to the UserProfileService. 
com.atlassian.confluence.rpc.soap.beans.RemotePermission
          use RemoteContentPermission instead 
com.atlassian.confluence.servlet.download.ResourceDownload
           
com.atlassian.confluence.plugin.descriptor.web.conditions.ShowingUserAttachmentsCondition
          since 2.8 because it is no longer used in Confluence 
com.atlassian.confluence.core.actions.StylesheetAction
          since 2.8 because this is a cluttered mess with a variety of concerns. Use CombinedStylesheetAction for space or global scoped styles; ColorsStylesheetAction for colour scheme styles; or ThemeColorsStylesheetAction for theme-specific styles. 
com.atlassian.confluence.search.summary.Summarizer
          use Summarizer instead. 
com.atlassian.confluence.util.http.httpclient.TrustedTokenAuthenticator.TrustedConnectionStatus
          As of Confluence 2.10, use TrustedConnectionStatus 
com.atlassian.confluence.plugin.descriptor.web.conditions.user.UserHasHistoryCondition
          since 2.8. This condition now always returns true. 
com.atlassian.confluence.plugin.descriptor.web.conditions.UserLoggedInCondition
          since 2.8. Use UserLoggedInCondition instead. 
com.atlassian.confluence.plugin.descriptor.web.conditions.UserLoggedInEditableCondition
          since 2.8. Use UserLoggedInEditableCondition instead. 
com.atlassian.confluence.plugin.descriptor.web.conditions.UserWatchingPageCondition
          since 2.8. Use UserWatchingPageCondition instead. 
com.atlassian.confluence.plugin.descriptor.web.conditions.UserWatchingSpaceCondition
          since 2.8. Use UserWatchingSpaceCondition instead. 
com.atlassian.confluence.util.VelocityUtils
            
com.atlassian.confluence.pages.thumbnail.WebDavThumbnailManager
          since 2.7. WebDAV implementation in Confluence has been removed. 
 

Deprecated Exceptions
com.atlassian.confluence.json.parser.JSONException
          Use the json.objects classes. The JSONException is thrown by the JSON.org classes then things are amiss. 
 

Deprecated Fields
com.atlassian.confluence.security.SpacePermission.ADMINISTER_CONFLUENCE_PERMISSION
          since Confluence 2.7 use SpacePermission.CONFLUENCE_ADMINISTRATOR_PERMISSION and/or SpacePermission.SYSTEM_ADMINISTRATOR_PERMISSION. 
com.atlassian.confluence.plugin.descriptor.web.ConfluenceWebInterfaceManager.CONTEXT_KEY_HELPER
          since 2.8 see WebInterfaceContext 
com.atlassian.confluence.spaces.DefaultSpaceManager.DEFAULT_HOMEPAGE_CONTENT
          As of Confluence 2.10 use InitialSpaceContentListener.DEFAULT_HOMEPAGE_CONTENT 
com.atlassian.confluence.spaces.DefaultSpaceManager.DEFAULT_HOMEPAGE_TITLE
          As of Confluence 2.10 use InitialSpaceContentListener.DEFAULT_HOMEPAGE_TITLE 
com.atlassian.confluence.setup.bandana.ConfluenceDaoBandanaPersister.GLOBAL_BANDANA_CONTEXT
          use ConfluenceBandanaContext.GLOBAL_CONTEXT 
com.atlassian.confluence.plugin.descriptor.ConfluenceVelocityModuleDescriptor.localeManager
          Use i18NBeanFactory directly 
com.atlassian.confluence.core.ConfluenceActionSupport.log
          since 2.6.1 create a private static logger in your action class 
com.atlassian.confluence.search.lucene.extractor.PageContentEntityObjectExtractor.FieldNames.PAGE_REAL_TITLE
          since 2.8 - badly named, use PAGE_DISPLAY_TITLE instead 
com.atlassian.confluence.spaces.SpaceManager.PERSONAL_SPACEKEY_IDENTIFIER
          since 2.3 use Space.PERSONAL_SPACEKEY_IDENTIFIER 
 

Deprecated Methods
com.atlassian.confluence.rpc.soap.services.AttachmentsSoapService.addAttachment(RemoteAttachment, byte[])
          available for backward compatibility. 
com.atlassian.confluence.rpc.soap.ConfluenceSoapServiceDelegator.addAttachment(String, RemoteAttachment, byte[])
          available for backward compatibility. 
com.atlassian.confluence.rpc.soap.ConfluenceSoapService.addAttachment(String, RemoteAttachment, byte[])
          available for backward compatibility. 
com.atlassian.confluence.AbstractConfluenceAcceptanceTest.addComment(String, String, String)
          Should use ViewContentBean.addComment() instead. 
com.atlassian.confluence.upgrade.AbstractUpgradeTask.addError(String)
          since 1.2. Use addError(UpgradeError error) 
com.atlassian.confluence.upgrade.AbstractUpgradeTask.addError(Throwable)
          since 1.2. Use addError(UpgradeError error) 
com.atlassian.confluence.util.LabelUtil.addLabel(String, LabelManager, User, Labelable)
          since 2.9 
com.atlassian.confluence.util.message.MessageManager.addMessage(String, String, Message)
          since 2.9 
com.atlassian.confluence.AbstractConfluenceAcceptanceTest.addPageComment(String)
          Should use ViewContentBean.addComment() instead. 
com.atlassian.confluence.util.ResourceManager.addResource(String, File, Space)
          since 2.8 
com.atlassian.confluence.util.ResourceManager.addResource(String, File, Space, String)
          since 2.8 
com.atlassian.confluence.pages.PageManager.appendPage(Page, Page)
          since 2.9 use PageManager.movePageAsChild(Page, Page) 
com.atlassian.confluence.pages.DefaultPageManager.appendPage(Page, Page)
          since 2.9 use DefaultPageManager.movePageAsChild(Page, Page) 
com.atlassian.confluence.AbstractAtlassianWebTestCase.assertTitleEquals(String)
          Don't use directly, use AbstractAtlassianWebTestCase.assertPageTitleEquals(String) or AbstractAtlassianWebTestCase.assertTitleEquals(String, String) 
com.atlassian.confluence.selenium.client.InsertImagePopup.attachImage(String, String)
          won't work because the browser doesn't let file upload dialogs to be manipulated via javascript Leaving this in here, because this would be the best way to test insert image actions on new pages. 
com.atlassian.confluence.setup.ConfluenceListableBeanFactory.autowireNonSingletonBeanProperties(Object, int, boolean)
          Use AbstractAutowireCapableBeanFactory.autowireBeanProperties(Object, int, boolean) instead. 
com.atlassian.confluence.util.velocity.ConfluenceVelocityResourceCache.clearAllCaches()
          Use getInstance().clear() 
com.atlassian.confluence.setup.BootstrapUtils.closeContext()
          since 2.3 use BootstrapUtils.closeContext() instead. 
com.atlassian.confluence.util.LabelUtil.convertToDelimitedString(Labelable, User, LabelManager)
          Use #convertToDelimitedString(obj, user) as the labelManager is no longer required. 
com.atlassian.confluence.pages.wysiwyg.ConfluenceWysiwygConverter.convertWikiMarkupToXHtmlWithoutPage(String, String)
          - Either use ConfluenceWysiwygConverterDWRWrapper.convertWikiMarkupToXHtmlWithoutPage(String wikiMarkup, String pageId) or ConfluenceWysiwygConverter.convertWikiMarkupToXHtml(String wikiMarkup, String pageId) Converts wiki markup text into XHTML, using the page context of the content object specified by the id. If content is null, use convertWikiMarkupToXHtml(ContentEntityObject content, String spaceKey, String wikiMarkup) 
com.atlassian.confluence.pages.wysiwyg.ConfluenceWysiwygConverter.convertXHtmlToWikiMarkupWithoutPage(String, String)
          * @deprecated - Either use ConfluenceWysiwygConverterDWRWrapper.convertXHtmlToWikiMarkupWithoutPage(String wikiMarkup, String pageId) or ConfluenceWysiwygConverter.convertXHtmlToWikiMarkup(String wikiMarkup, String pageId) Converts XHTML into wiki markup, without using page context 
com.atlassian.confluence.security.SpacePermissionManager.createInitialSpacePermissions(Space, User)
          since 2.7. Use SpacePermissionManager.createInitialSpacePermissions(Space) instead. 
com.atlassian.confluence.security.SpacePermissionCheckDispatcherCoordinator.createInitialSpacePermissions(Space, User)
          since 2.7. Use SpacePermissionCheckDispatcherCoordinator.createInitialSpacePermissions(Space) instead. 
com.atlassian.confluence.security.SpacePermissionCoordinator.createInitialSpacePermissions(Space, User)
          since 2.7. Use SpacePermissionCoordinator.createInitialSpacePermissions(Space) instead. 
com.atlassian.confluence.security.DefaultSpacePermissionManager.createInitialSpacePermissions(Space, User)
          since 2.7. Use DefaultSpacePermissionManager.createInitialSpacePermissions(Space) instead. 
com.atlassian.confluence.servlet.download.ExportDownload.createTempFile(String, String)
          since 2.7. Instead use the WritableDownloadResourceManager to generate a DownloadResourceWriter Create a temporary file in the appropriate location to be returned by this service. 
com.atlassian.confluence.importexport.impl.AbstractXmlExporter.expandSpaces(List)
          - just use getContentAndContentPropertiesFromSpace() 
com.atlassian.confluence.user.DefaultUserAccessor.filterUnaccessibleUsers(Pager, User)
          since 2.8, use DefaultUserAccessor.filterUnaccessibleUsers(java.util.List, com.atlassian.user.User) instead 
com.atlassian.confluence.labels.persistence.dao.hibernate.HibernateLabelDao.findContentByLabel(Label)
          since 2.10. Use HibernateLabelDao.findCurrentContentForLabel(Label label) instead. 
com.atlassian.confluence.labels.persistence.dao.hibernate.HibernateLabelDao.findContentForLabel(Label)
          since 2.10. Use HibernateLabelDao.findCurrentContentForLabel(Label label) instead. 
com.atlassian.confluence.user.SearchEntitiesManager.findGroups(TermQuery)
          since 2.8, use SearchEntitiesManager.findGroupsAsList(com.atlassian.user.search.query.TermQuery) instead. 
com.atlassian.confluence.user.DefaultSearchEntitiesManager.findGroups(TermQuery)
          since 2.8, use DefaultSearchEntitiesManager.findGroupsAsList(com.atlassian.user.search.query.TermQuery) instead 
com.atlassian.confluence.user.SearchEntitiesManager.findGroups(TermQuery, boolean)
          since 2.8, use SearchEntitiesManager.findGroupsAsList(com.atlassian.user.search.query.TermQuery, boolean) instead. 
com.atlassian.confluence.user.DefaultSearchEntitiesManager.findGroups(TermQuery, boolean)
          since 2.8, use DefaultSearchEntitiesManager.findGroupsAsList(com.atlassian.user.search.query.TermQuery, boolean) instead 
com.atlassian.confluence.user.SearchEntitiesManager.findUsers(Query)
          since 2.8, use SearchEntitiesManager.findUsersAsList(com.atlassian.user.search.query.Query) instead. 
com.atlassian.confluence.user.DefaultSearchEntitiesManager.findUsers(Query)
          since 2.8, use DefaultSearchEntitiesManager.findUsersAsList(com.atlassian.user.search.query.Query) instead. 
com.atlassian.confluence.util.GeneralUtil.format(Date)
          since 2.3. Provided for pre-2.3 themes and layouts only. New themes and layouts should use $dateFormatter.format(Date) in the Velocity context or ConfluenceUserPreferences.getDateFormatter(FormatSettingsManager). 
com.atlassian.confluence.util.GeneralUtil.formatBlogDate(Date)
          since 2.3. Provided for pre-2.3 themes and layouts only. New themes and layouts should use $dateFormatter.formatBlogDate(Date) in the Velocity context or ConfluenceUserPreferences.getDateFormatter(FormatSettingsManager). 
com.atlassian.confluence.util.GeneralUtil.formatDateTime(Date)
          since 2.3. Provided for pre-2.3 themes and layouts only. New themes and layouts should use $dateFormatter.formatDateTime(Date) in the Velocity context or ConfluenceUserPreferences.getDateFormatter(FormatSettingsManager). 
com.atlassian.confluence.util.GeneralUtil.formatTime(Date)
          since 2.3. Provided for pre-2.3 themes and layouts only. New themes and layouts should use $dateFormatter.formatTime(Date) in the Velocity context or ConfluenceUserPreferences.getDateFormatter(FormatSettingsManager). 
com.atlassian.confluence.pages.persistence.dao.WebDavAttachmentDao.getAttachmentByQuery(ListQuery, int)
          since 2.8, use com.atlassian.confluence.search.smartlist.SmartListManager#search instead. 
com.atlassian.confluence.pages.persistence.dao.AttachmentDao.getAttachmentByQuery(ListQuery, int)
          since 2.8, use com.atlassian.confluence.search.smartlist.SmartListManager#search instead. 
com.atlassian.confluence.pages.persistence.dao.hibernate.AbstractHibernateAttachmentDao.getAttachmentByQuery(ListQuery, int)
          since 2.8, use com.atlassian.confluence.search.smartlist.SmartListManager#search instead. 
com.atlassian.confluence.pages.AttachmentManager.getAttachments(ListQuery, int)
          since 2.8, use com.atlassian.confluence.search.smartlist.SmartListManager#search instead. 
com.atlassian.confluence.pages.DefaultAttachmentManager.getAttachments(ListQuery, int)
          since 2.8, use com.atlassian.confluence.search.smartlist.SmartListManager#search instead. 
com.atlassian.confluence.pages.WebDavAttachmentManager.getAttachments(ListQuery, int)
          since 2.8, use com.atlassian.confluence.search.smartlist.SmartListManager#search instead. Currently there is no efficitent way to query for recently attached attachments 
com.atlassian.confluence.pages.DelegatorAttachmentManager.getAttachments(ListQuery, int)
          since 2.8, use com.atlassian.confluence.search.smartlist.SmartListManager#search instead. 
com.atlassian.confluence.setup.BootstrapManager.getBaseUrl()
          use getBaseUrl() on SettingsManager.getGlobalSettings() instead 
com.atlassian.confluence.setup.DefaultBootstrapManager.getBaseUrl()
            
com.atlassian.confluence.spaces.Space.getBlogPosts()
          use spaceManager.getBlogPosts(space, false) instead 
com.atlassian.confluence.spaces.SpaceManager.getBlogPosts(Space, boolean)
          from 2.3 use PageManager.getBlogPosts(Space, boolean) 
com.atlassian.confluence.setup.BootstrapUtils.getBootstrapContext()
          since 2.3 use BootstrapUtils.getBootstrapContext() instead. 
com.atlassian.confluence.setup.BootstrapUtils.getBootstrapManager()
          since 2.3 use BootstrapUtils.getBootstrapManager() instead. 
com.atlassian.confluence.core.actions.StylesheetAction.getBorderColor()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getBorderColor()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.core.actions.StylesheetAction.getBorderColour()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getBorderColour()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.core.actions.StylesheetAction.getBreadcrumbsTextColour()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getBreadcrumbsTextColour()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.setup.BootstrapManager.getConfiguredConfluenceHome()
          use AtlassianBootstrapManager.getConfiguredApplicationHome() instead 
com.atlassian.confluence.core.ContentEntityObject.getContentPermission(String)
          use getContentPermissionSet 
com.atlassian.confluence.spaces.Space.getCurrentBlogPosts()
          use spaceManager.getBlogPosts(space, true) instead 
com.atlassian.confluence.spaces.Space.getCurrentMail()
          use spageManager.getMail(space, false) instead. 
com.atlassian.confluence.spaces.Space.getCurrentPages()
          use spaceManager.getPages(space, true) instead 
com.atlassian.confluence.importexport.DefaultExportContext.getDateFormatter()
          since 2.8.2 
com.atlassian.confluence.importexport.ExportContext.getDateFormatter()
          since 2.8.2, use ExportContext.getUser() instead. 
com.atlassian.confluence.plugin.descriptor.web.ConfluenceWebInterfaceManager.getDisplayableItems(String, User, GlobalHelper)
          since 2.8 use ConfluenceWebInterfaceManager.getDisplayableItems(String, WebInterfaceContext) with the result of getWebInterfaceContext() on your action. 
com.atlassian.confluence.plugin.descriptor.web.model.ConfluenceWebLabel.getDisplayableLabel(HttpServletRequest, GlobalHelper)
          since 2.8 use ConfluenceWebLabel.getDisplayableLabel(HttpServletRequest, WebInterfaceContext) 
com.atlassian.confluence.plugin.descriptor.web.ConfluenceWebInterfaceManager.getDisplayableSections(String, User, GlobalHelper)
          since 2.8 use ConfluenceWebInterfaceManager.getDisplayableSections(String, WebInterfaceContext) with the result of ConfluenceActionSupport.getWebInterfaceContext(). 
com.atlassian.confluence.plugin.descriptor.web.model.ConfluenceWebLink.getDisplayableUrl(HttpServletRequest, GlobalHelper)
          since 2.8 use ConfluenceWebLink.getDisplayableUrl(HttpServletRequest, WebInterfaceContext) 
com.atlassian.confluence.setup.BootstrapManager.getDomainName()
          use getBaseUrl() on SettingsManager.getGlobalSettings() instead 
com.atlassian.confluence.setup.DefaultBootstrapManager.getDomainName()
            
com.atlassian.confluence.plugin.editor.Editor.getEditorSpecificCss()
          since 2.8. 
com.atlassian.confluence.core.ContentEntityManager.getEntitiesModifiedSince(Date)
          since 2.8. Please use ContentEntityManager.getRecentlyModifiedForChangeDigest(java.util.Date) instead. 
com.atlassian.confluence.core.persistence.ContentEntityObjectDao.getEntitiesModifiedSince(Date)
          since 2.8. Please use ContentEntityObjectDao.getRecentlyModifiedForChangeDigest(java.util.Date) instead. 
com.atlassian.confluence.servlet.download.ExportDownload.getExportRoot()
          since 2.7 
com.atlassian.confluence.util.Resource.getFile()
          As of Confluence 1.4 RC 1 this is deprecated. It is now replaced by relatePathToFile calls. 
com.atlassian.confluence.search.actions.SearchBean.getFilteredCount()
          filter counting is no longer used. 
com.atlassian.confluence.pages.actions.ViewPageAction.getFocusedCommentId()
          since 2.8 use 'commentId' parameter from the web or ViewPageAction.getComment() from the application. 
com.atlassian.confluence.security.SpacePermission.getGenericSpacePermissions()
           
com.atlassian.confluence.core.ConfluenceActionSupport.getGlobalHelper()
          Support for legacy 1.4 themes that might have had $globalHelper in them (unlikely but nice). 
com.atlassian.confluence.security.ContentPermission.getGroup()
          as of version 2.4. Use ContentPermission.getGroupName() instead. 
com.atlassian.confluence.core.actions.StylesheetAction.getHeadingTextColor()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getHeadingTextColor()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.core.actions.StylesheetAction.getHeadingTextColour()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getHeadingTextColour()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.core.ContentPermissionManager.getInheritedContentPermissions(ContentEntityObject)
          use #getInheritedContentPermissionSets 
com.atlassian.confluence.core.DefaultContentPermissionManager.getInheritedViewContentPermissions(Page)
          use ContentPermissionManager.getInheritedContentPermissionSets(ContentEntityObject) 
com.atlassian.confluence.plugin.editor.Editor.getJavascriptTemplate()
          Since 2.10. Resources are now loading with Editor.getResourcesKey() 
com.atlassian.confluence.core.actions.StylesheetAction.getLinkColor()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getLinkColor()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.core.actions.StylesheetAction.getLinkColour()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getLinkColour()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.user.UserInterfaceState.getLocationShowing()
          since 2.9 this setting is no longer persisted. This method now always returns false. 
com.atlassian.confluence.core.DefaultContentEntityManager.getLockedBySpace(String)
          since 2.10. There is no replacement as this functionality was superseded by multiple page permissions (CONF-3701) 
com.atlassian.confluence.core.persistence.hibernate.ContentEntityObjectHibernateDao.getLockedContentBySpace(String)
          since 2.10. There is no replacement as this functionality was superseded by multiple page permissions (CONF-3701) 
com.atlassian.confluence.spaces.Space.getMail()
          use spageManager.getMail(space, false) instead. 
com.atlassian.confluence.spaces.SpaceManager.getMail(Space, boolean)
          from 2.3 use MailContentManager.getMail(Space, boolean) 
com.atlassian.confluence.util.message.MessageManager.getMessages(String, String)
          since 2.9 
com.atlassian.confluence.core.actions.StylesheetAction.getNavBackgroundColor()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getNavBackgroundColor()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.core.actions.StylesheetAction.getNavBackgroundColour()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getNavBackgroundColour()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.core.actions.StylesheetAction.getNavSelectedBackgroundColor()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getNavSelectedBackgroundColor()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.core.actions.StylesheetAction.getNavSelectedBackgroundColour()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getNavSelectedBackgroundColour()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.core.actions.StylesheetAction.getNavSelectedTextColor()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getNavSelectedTextColor()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.core.actions.StylesheetAction.getNavSelectedTextColour()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getNavSelectedTextColour()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.core.actions.StylesheetAction.getNavTextColor()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getNavTextColor()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.core.actions.StylesheetAction.getNavTextColour()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getNavTextColour()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.themes.events.ColourSchemeChangedEvent.getNewColourScheme()
          since 2.8, not used anywhere in Confluence. 
com.atlassian.confluence.cache.CacheStatistics.getNotFoundCount()
          since 2.3 
com.atlassian.confluence.themes.events.ColourSchemeChangedEvent.getOldColourScheme()
          since 2.8, not used anywhere in Confluence. 
com.atlassian.confluence.pages.AttachmentUtils.getOldContainingFolder(Attachment)
          as of Confluence 2.2 (we now use the attachment id to store attachments) 
com.atlassian.confluence.core.Versioned.getOriginalVersion()
          since 2.5. Use Versioned.getLatestVersion() and Versioned.isLatestVersion() instead. 
com.atlassian.confluence.spaces.Space.getPages()
          use spaceManager.getPages(space, false) instead 
com.atlassian.confluence.spaces.SpaceManager.getPages(Space, boolean)
          from 2.3 use PageManager.getPages(Space, boolean) 
com.atlassian.confluence.spaces.SpaceManager.getPagesStartingWith(Space, String)
          from 2.3 use PageManager.getPagesStartingWith(Space, String) 
com.atlassian.confluence.core.ContentEntityObject.getPermissions()
          use ContentEntityObject.getContentPermissionSet(String) 
com.atlassian.confluence.user.DefaultPersonalInformationManager.getPersonalInformation(String)
            
com.atlassian.confluence.user.PersonalInformationManager.getPersonalInformation(String)
          since 2.3 use PersonalInformationManager.getPersonalInformation(com.atlassian.user.User) 
com.atlassian.confluence.util.GeneralUtil.getProperties(String, Class)
          since 2.3 use PropertyUtils.getProperties(String, Class) instead 
com.atlassian.confluence.util.GeneralUtil.getPropertiesFromFile(File)
          since 2.3 use PropertyUtils.getProperties(String, Class) instead 
com.atlassian.confluence.util.GeneralUtil.getPropertiesFromStream(InputStream)
          since 2.3 use PropertyUtils.getProperties(String, Class) instead 
com.atlassian.confluence.event.events.search.SearchPerformedEvent.getQuery()
           
com.atlassian.confluence.core.ConfluenceActionSupport.getRandom()
          since 2.9. Random number generation does not belong here. Please introduce your own random number generation in your own actions. 
com.atlassian.confluence.pages.Attachment.getRealTitle()
          since 2.8 - see Addressable 
com.atlassian.confluence.labels.Label.getRealTitle()
          since 2.8 - see Addressable 
com.atlassian.confluence.core.ContentEntityObject.getRealTitle()
          since 2.8 - badly named, use ContentEntityObject.getDisplayTitle() 
com.atlassian.confluence.core.Addressable.getRealTitle()
          since 2.8 - badly named method, use Addressable.getDisplayTitle() instead. 
com.atlassian.confluence.core.ContentEntityManager.getRecentlyModifiedEntities(int)
          for content queries, use the list manager instead. 
com.atlassian.confluence.core.DefaultContentEntityManager.getRecentlyModifiedEntities(int)
            
com.atlassian.confluence.core.ContentEntityManager.getRecentlyModifiedEntitiesByType(ListQuery, int)
          since 2.8, use com.atlassian.confluence.search.smartlist.SmartListManager#search instead. 
com.atlassian.confluence.core.DefaultContentEntityManager.getRecentlyModifiedEntitiesByType(ListQuery, int)
          since 2.8, use com.atlassian.confluence.search.smartlist.SmartListManager#search instead. 
com.atlassian.confluence.core.persistence.ContentEntityObjectDao.getRecentlyModifiedEntitiesByType(ListQuery, int)
          since 2.8, use com.atlassian.confluence.search.smartlist.SmartListManager#search instead. 
com.atlassian.confluence.core.persistence.hibernate.ContentEntityObjectHibernateDao.getRecentlyModifiedEntitiesByType(ListQuery, int)
          since 2.8, use com.atlassian.confluence.search.smartlist.SmartListManager#search instead. 
com.atlassian.confluence.util.GeneralUtil.getRelativeTime(Date)
          since 2.7 use FriendlyDateFormatter 
com.atlassian.confluence.plugin.descriptor.web.model.ConfluenceWebLink.getRenderedUrl(ThemeHelper)
          since 2.8 use ConfluenceWebLink.getRenderedUrl(WebInterfaceContext) 
com.atlassian.confluence.util.velocity.ConfigurableResourceManager.getResource(String, int)
          Use ConfigurableResourceManager.getResource(String resourceName, int resourceType, String encoding ) 
com.atlassian.confluence.pages.actions.ViewPageAction.getRootComment()
          since 2.8 the default theme no longer uses a "root comment". This method will remain until the other themes do the same. 
com.atlassian.confluence.core.ConfluenceActionSupport.getSpaceHelper()
          Support for legacy 1.4 themes that might have had $spaceHelper in them (unlikely but nice). 
com.atlassian.confluence.mail.reports.ChangeDigestReport.getSpaceIterator()
          since 2.8. Please use ChangeDigestReport.getSpaceReports() and then get the iterator from that. We only use this in tests at the moment. 
com.atlassian.confluence.labels.Labelling.getSpaceKey()
          since 2.10. Use Labelling.getContent() and check if it is a SpaceContentEntityObject. If it is, cast it and call SpaceContentEntityObject.getSpaceKey() on it 
com.atlassian.confluence.core.actions.StylesheetAction.getSpaceNameColor()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getSpaceNameColor()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.core.actions.StylesheetAction.getSpaceNameColour()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getSpaceNameColour()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.spaces.SpaceManager.getSpaces()
          since 2.3 use SpaceManager.getSpacesByType(com.atlassian.confluence.spaces.SpaceType) 
com.atlassian.confluence.mail.reports.ChangeDigestReport.getSpaces()
          since 2.8. Please use ChangeDigestReport.getSpaceReports() instead. 
com.atlassian.confluence.spaces.SpaceManager.getSpacesCreatedOrUpdatedSinceDate(Date)
          since 2.3 this method is unreferenced, and probably doesn't do anything useful 
com.atlassian.confluence.cache.tangosol.TangosolCache.getStatus()
            
com.atlassian.confluence.pages.actions.ViewPageAttachmentsAction.getTargetHelper(Attachment)
          since 2.8 use ViewPageAttachmentsAction.getWebInterfaceContext(Attachment) 
com.atlassian.confluence.core.actions.StylesheetAction.getTopBarColor()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getTopBarColor()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.core.actions.StylesheetAction.getTopBarColour()
          since 2.8 Use StylesheetAction.getColourScheme() instead. 
com.atlassian.confluence.core.actions.ThemeColorsStylesheetAction.getTopBarColour()
          since 2.8 Use ThemeColorsStylesheetAction.getColorScheme() instead. 
com.atlassian.confluence.util.http.trust.TrustedConnectionStatus.getTrustedConnectionErrors()
          as of confluence 2.10, use getTrustedTransportErrorMessages instead 
com.atlassian.confluence.util.http.httpclient.TrustedTokenAuthenticator.getTrustedConnectionStatus(HttpMethod)
          As of Confluence 2.10, use DefaultTrustedConnectionStatusBuilder.getTrustedConnectionStatus(HttpResponse) 
com.atlassian.confluence.spaces.Space.getType()
          use getSpaceType() 
com.atlassian.confluence.servlet.download.ExportDownload.getUrl(File, String)
          since 2.7. Instead use the DownloadResourceWriter to get the resource path. 
com.atlassian.confluence.user.UserAccessor.getUserProfilePicture(String)
          since 2.9. Use UserAccessor.getUserProfilePicture(User) instead. 
com.atlassian.confluence.core.persistence.hibernate.PropertiesType.hasNiceEquals()
            
com.atlassian.confluence.core.persistence.hibernate.StringClobType.hasNiceEquals()
            
com.atlassian.confluence.util.FontManager.installFont(File)
          Since 2.8 
com.atlassian.confluence.util.DefaultFontManager.installFont(File)
          Since 2.8 
com.atlassian.confluence.plugin.webresource.ConfluenceWebResourceManager.invalidateGlobalCss()
          since 2.8 Use CssResourceCounterManager.invalidateGlobalCssResourceCounter() instead. 
com.atlassian.confluence.plugin.webresource.DefaultConfluenceWebResourceManager.invalidateGlobalCss()
          since 2.8 Use CssResourceCounterManager.invalidateGlobalCssResourceCounter() instead. 
com.atlassian.confluence.plugin.webresource.ConfluenceWebResourceManager.invalidateSpaceCss(String)
          since 2.8 Use CssResourceCounterManager.invalidateGlobalCssResourceCounter() instead. 
com.atlassian.confluence.plugin.webresource.DefaultConfluenceWebResourceManager.invalidateSpaceCss(String)
          since 2.8 Use CssResourceCounterManager.invalidateSpaceCssResourceCounter(String) ()} instead. 
com.atlassian.confluence.security.SpacePermission.isAdministrativePermission()
          since Confluence 2.7. Not used in Confluence core at the moment. 
com.atlassian.confluence.setup.BootstrapManager.isConfluenceHomeValid()
          use AtlassianBootstrapManager.isApplicationHomeValid() instead 
com.atlassian.confluence.pages.actions.ViewPageAction.isFavouritePage()
          since 2.8 use ContentEntityObject.isFavourite(User). 
com.atlassian.confluence.util.GeneralUtil.isGlobalAdministrator(Object, User)
          since 2.0 use PermissionManager directly, or use the $permissionHelper from velocity 
com.atlassian.confluence.security.PermissionManager.isGlobalAdministrator(User)
          since 2.7. Please use PermissionManager.isConfluenceAdministrator(User). 
com.atlassian.confluence.security.PermissionHelper.isGlobalAdministrator(User)
          since 2.7. Please use PermissionHelper.isConfluenceAdministrator(User) instead. 
com.atlassian.confluence.user.actions.AbstractUserProfileAction.isShowingAttachments()
          since 2.8 because the attachments tab no longer exists 
com.atlassian.confluence.spaces.SpaceManager.isValidPersonalSpaceKey(String)
          since 2.3 use Space.isValidPersonalSpaceKey(java.lang.String) 
com.atlassian.confluence.spaces.DefaultSpaceManager.isValidPersonalSpaceKey(String)
          since 2.3 use Space.isValidPersonalSpaceKey(String) instead 
com.atlassian.confluence.spaces.SpaceManager.isValidSpaceKey(String)
          since 2.3 use Space.isValidGlobalSpaceKey(java.lang.String) 
com.atlassian.confluence.spaces.DefaultSpaceManager.isValidSpaceKey(String)
          since 2.3 use Space.isValidGlobalSpaceKey(String) instead 
com.atlassian.confluence.user.actions.AbstractUserProfileAction.isViewingMyProfile()
          for public use since 2.8 use PersonalInformation.belongsTo(User) (or AbstractUserProfileAction.isMyProfile() in subclasses). 
com.atlassian.confluence.setup.BootstrapManager.isWebdavEnabled()
          use Settings.isWebdavEnabled() instead 
com.atlassian.confluence.AcceptanceTestHelper.loadFileFromClasspath(String)
          since 2.10 use Classpath.getFile(String). 
com.atlassian.confluence.AcceptanceTestHelper.loadFromClasspath(String)
          since 2.10 use Classpath.getBytes(String). 
com.atlassian.confluence.spaces.SpaceManager.moveHierarchy(Page, Page, Space, User, boolean, List)
          since 2.9 use PageManager.movePage(Page, Space) or PageManager.movePage(Page, Page, int) instead 
com.atlassian.confluence.spaces.DefaultSpaceManager.moveHierarchy(Page, Page, Space, User, boolean, List)
          since 2.9 use PageManager.movePage(Page, Space) or PageManager.movePage(Page, Page, int) instead 
com.atlassian.confluence.pages.PageManager.movePage(Page, Page, int)
          since 2.9 use PageManager.movePageAfter(Page, Page) or PageManager.movePageBefore(Page, Page) 
com.atlassian.confluence.pages.DefaultPageManager.movePage(Page, Page, int)
          since 2.9 use DefaultPageManager.movePageBefore(Page, Page) and DefaultPageManager.movePageAfter(Page, Page) 
com.atlassian.confluence.pages.PageManager.movePage(Page, Space)
          since 2.9 use PageManager.movePageToTopLevel(Page, Space) 
com.atlassian.confluence.pages.DefaultPageManager.movePage(Page, Space)
          since 2.9 use DefaultPageManager.movePageToTopLevel(Page, Space) 
com.atlassian.confluence.pages.actions.AbstractPageChangeAction.pageAlreadyExists()
           
com.atlassian.confluence.mail.notification.persistence.NotificationDao.removeAllNotificationsForUser(User)
          since 2.10 - Use NotificationDao.findNotificationsByUser(User) and ObjectDao.remove(com.atlassian.core.bean.EntityObject) instead. 
com.atlassian.confluence.AbstractConfluenceAcceptanceTest.removeBlog(String, String, String)
          Use ViewContentBean.remove() instead. 
com.atlassian.confluence.mail.notification.persistence.NotificationDao.removeDailyReportNotificationForUser(String)
          since 2.10 - Use NotificationDao.findDailyReportNotification(String) and ObjectDao.remove(com.atlassian.core.bean.EntityObject) instead 
com.atlassian.confluence.core.ContentEntityManager.revertContentEntityBackToVersion(ContentEntityObject, int)
          since 2.9, use ContentEntityManager.revertContentEntityBackToVersion(ContentEntityObject,int, String, boolean) instead 
com.atlassian.confluence.core.DefaultContentEntityManager.revertContentEntityBackToVersion(ContentEntityObject, int)
          since 2.9, use DefaultContentEntityManager.revertContentEntityBackToVersion(ContentEntityObject, int, String, boolean) instead 
com.atlassian.confluence.setup.BootstrapManager.setBaseUrl(String)
          use SettingsManager.updateGlobalSettings(com.atlassian.confluence.setup.settings.Settings) instead 
com.atlassian.confluence.setup.BootstrapUtils.setBootstrapContext(ApplicationContext)
          since 2.3 use BootstrapUtils.setBootstrapContext(ApplicationContext) instead. 
com.atlassian.confluence.setup.BootstrapUtils.setBootstrapManager(BootstrapManager)
          since 2.3 use BootstrapUtils.setBootstrapManager(AtlassianBootstrapManager) instead. 
com.atlassian.confluence.importexport.DefaultExportContext.setDateFormatter(DateFormatter)
          since 2.8.2 
com.atlassian.confluence.util.Resource.setFile(File)
          As of Confluence 1.4 RC 1 this is deprecated. It is now replaced by relatePathToFile calls. 
com.atlassian.confluence.pages.actions.ViewPageAction.setFocusedCommentId(long)
          since 2.8 use 'commentId' parameter from the web or ViewPageAction.setComment(Comment) from the application. 
com.atlassian.confluence.user.UserInterfaceState.setLocationShowing(Boolean)
          since 2.9 ignored because UserInterfaceState.getLocationShowing() always returns false. 
com.atlassian.confluence.pages.Page.setParent(Page)
          Do not call this method. It exists solely for hibernate to use. Use #setParentPage instead. I would have made this method private, but CGLIB was complaining. 
com.atlassian.confluence.pages.actions.ViewPageAction.setRootCommentId(long)
          since 2.8 the default theme no longer uses a "root comment". This method will remain until the other themes do the same. 
com.atlassian.confluence.labels.Labelling.setSpaceKey(String)
          since 2.10. The Labelling object is only associated with a space through the content. 
com.atlassian.confluence.plugin.DatabaseClassLoadingPluginLoader.shutDown()
          as per interface definition 
com.atlassian.confluence.util.GeneralUtil.summarise(String)
          since 2.0 use RendererUtil.summarise(String) instead. 
com.atlassian.confluence.security.SpacePermission.toFormParameterName(String)
          As of 2.7.2, use PermissionRow.buildParameterName(String, String). 
 

Deprecated Constructors
com.atlassian.confluence.themes.events.ColourSchemeChangedEvent(Object, String, BaseColourScheme, BaseColourScheme)
          since 2.8 use ColourSchemeChangedEvent.ColourSchemeChangedEvent(Object, String). 
com.atlassian.confluence.setup.settings.beans.ColourSchemesSettings()
          No-arg constructor is only here for deserialization. 
com.atlassian.confluence.labels.Labelling(Label, ContentEntityObject, String, String)
          since 2.10. The Labelling object is only associated with a space through the content. Use Labelling.Labelling(Label, ContentEntityObject, String) instead. 
com.atlassian.confluence.event.events.content.page.PageMoveEvent(Object, Page, Page, Space, User, boolean)
          since 2.9 Use PageMoveEvent.PageMoveEvent(Object, Page, Space, Page, Integer, User) instead 
com.atlassian.confluence.event.events.search.SearchPerformedEvent(Object, SearchQueryBean, User, int)
          the SearchQueryBean is no longer used (it will be null). Use SearchPerformedEvent.SearchPerformedEvent(Object, SearchQuery, User, int) instead. 
 



Copyright © 2003-2008 Atlassian Pty Ltd. All Rights Reserved.