| 
Deprecated Methods | 
org.nuxeo.ecm.webapp.filemanager.FileManageActionsBean.addBinaryFileFromPlugin(byte[], String, String, String)
 
          Use addBinaryFileFromPlugin(Blob, String, String) to avoid
             loading the data in memory as a Bytes array  | 
org.nuxeo.ecm.platform.comment.impl.CommentableDocumentAdapter.addComment(String)
 
            | 
org.nuxeo.ecm.webapp.filemanager.FileManageActionsBean.addFileFromPlugin(String, String, String, String, Boolean)
 
          use addBinaryFileFromPlugin with a Blob argument API to avoid
             loading the content in memory  | 
org.nuxeo.ecm.platform.ui.web.util.SuggestionActionsBean.addSelectionToList(ActionEvent)
 
          use SuggestionActionsBean.addBoundSelectionToList(ActionEvent) which
             retrieves selected value from bound method instead of
             retrieving suggestion input.  | 
org.nuxeo.ecm.platform.ui.web.util.SuggestionActionsBean.addSingleSelection(ActionEvent)
 
          use SuggestionActionsBean.addBoundSelectionToList(ActionEvent) which
             retrieves selected value from bound method instead of
             retrieving suggestion input.  | 
org.nuxeo.ecm.webapp.filemanager.FileManageActionsBean.canWrite()
 
            | 
org.nuxeo.ecm.webapp.base.InputController.computeOutcome(String)
 
          returning a non-null outcome is now useless since our
             FancyNavigationHandler already performs redirection
             to the right outcome when dealing with a null outcome. Plus
             assumptions on the view/outcome names here was a buggy hack.  | 
org.nuxeo.ecm.webapp.clipboard.ClipboardActionsBean.copySelection(List)
 
            | 
org.nuxeo.ecm.platform.comment.api.CommentManager.createComment(DocumentModel, String)
 
          CommentManager cannot find the author if invoked remotely so
             one should use CommentManager.createComment(DocumentModel, String, String)  | 
org.nuxeo.ecm.platform.usermanager.UserManager.createGroup(NuxeoGroup)
 
          use UserManager.createGroup(DocumentModel)  | 
org.nuxeo.ecm.platform.usermanager.UserManager.createPrincipal(NuxeoPrincipal)
 
          use UserManager.createUser(DocumentModel)  | 
org.nuxeo.ecm.platform.picture.api.ImagingService.crop(InputStream, int, int, int, int)
 
          use {@link #crop(Blob, int, int, int, int)  | 
org.nuxeo.ecm.platform.picture.core.im.IMImageUtils.crop(InputStream, int, int, int, int)
 
            | 
org.nuxeo.ecm.platform.picture.core.imagej.ImageJImageUtils.crop(InputStream, int, int, int, int)
 
            | 
org.nuxeo.ecm.platform.picture.core.ImageUtils.crop(InputStream, int, int, int, int)
 
            | 
org.nuxeo.ecm.platform.picture.core.mistral.MistralImageUtils.crop(InputStream, int, int, int, int)
 
            | 
org.nuxeo.ecm.platform.picture.ImagingComponent.crop(InputStream, int, int, int, int)
 
            | 
org.nuxeo.ecm.platform.ui.web.tag.fn.DocumentModelFunctions.defaultValue(String, String)
 
          use defaultValue(propertyName) instead  | 
org.nuxeo.ecm.platform.usermanager.UserManager.deleteGroup(NuxeoGroup)
 
          use UserManager.deleteGroup(DocumentModel)  | 
org.nuxeo.ecm.platform.usermanager.UserManager.deletePrincipal(NuxeoPrincipal)
 
          use UserManager.deleteUser(DocumentModel)  | 
org.nuxeo.runtime.test.NXRuntimeTestCase.deploy(String)
 
          use deployContrib() instead  | 
org.nuxeo.runtime.test.runner.RuntimeHarness.deploy(String)
 
          use deployContrib() instead  | 
org.nuxeo.runtime.test.NXRuntimeTestCase.deployContrib(String)
 
          use the less ambiguous NXRuntimeTestCase.deployContrib(BundleFile,String)  | 
org.nuxeo.runtime.test.runner.RuntimeHarness.deployContrib(String)
 
          use the less ambiguous #deployContrib(BundleFile,String)  | 
org.nuxeo.ecm.webapp.pagination.SortActionsBean.destroy()
 
            | 
org.nuxeo.ecm.webapp.pagination.SortActions.destroy()
 
            | 
org.nuxeo.ecm.webapp.security.SecurityActions.displayInheritedPermissions()
 
          use SecurityActions.getDisplayInheritedPermissions()  | 
org.nuxeo.ecm.webapp.contentbrowser.DocumentActions.download()
 
            | 
org.nuxeo.ecm.webapp.contentbrowser.DocumentActions.downloadFromList()
 
            | 
org.nuxeo.ecm.webengine.app.impl.DefaultModule.flushCache()
 
            | 
org.nuxeo.ecm.platform.syndication.SyndicationActionsBean.getActionsForSyndication()
 
          Unused  | 
org.nuxeo.ecm.platform.syndication.SyndicationActions.getActionsForSyndication()
 
          Unused  | 
org.nuxeo.ecm.core.event.impl.EventServiceImpl.getActiveAsyncTaskCount()
 
          use EventServiceImpl.waitForAsyncCompletion() instead.  | 
org.nuxeo.ecm.webengine.app.impl.DefaultModule.getAdapter(Resource, String)
 
            | 
org.nuxeo.ecm.webengine.app.impl.DefaultModule.getAdapterNames(Resource)
 
            | 
org.nuxeo.ecm.webengine.app.impl.DefaultModule.getAdapters()
 
            | 
org.nuxeo.ecm.webengine.app.impl.DefaultModule.getAdapters(Resource)
 
            | 
org.nuxeo.ecm.platform.audit.api.NXAuditEvents.getAuditableEventNames()
 
            | 
org.nuxeo.ecm.platform.usermanager.UserManager.getAvailableGroups()
 
          use UserManager.getGroupIds() or #searchGroups(Map, Set)  | 
org.nuxeo.ecm.platform.usermanager.UserManager.getAvailablePrincipals()
 
          use UserManager.getUserIds() or #searchUsers(null)  | 
org.nuxeo.ecm.platform.ui.web.util.SuggestionActionsBean.getBase(UIComponent)
 
            | 
org.nuxeo.ecm.webapp.contentbrowser.ContentRootsActionsBean.getCanAddWorkspaces()
 
            | 
org.nuxeo.ecm.webapp.clipboard.ClipboardActionsBean.getCanEditListDocs(String)
 
            | 
org.nuxeo.ecm.core.api.impl.DocumentModelImpl.getClient()
 
          use DocumentModelImpl.getCoreSession() instead.  | 
org.nuxeo.ecm.core.schema.TypeConstants.getContentType()
 
          this is too specific, content can be placed in other schemas
             than the 'file' schema.  | 
org.nuxeo.ecm.platform.types.adapter.TypeInfoAdapter.getCoreType()
 
          Use TypeInfoAdapter.getId() instead.  | 
org.nuxeo.ecm.platform.ui.web.api.NavigationContext.getCurrentDocumentChildren()
 
          this method is not scalable, all the documents will be in
 memory  | 
org.nuxeo.ecm.webapp.context.NavigationContextBean.getCurrentDocumentChildren()
 
            | 
org.nuxeo.ecm.webapp.context.NavigationContextBean.getCurrentDocumentChildrenPage()
 
            | 
org.nuxeo.ecm.platform.ui.web.api.WebActions.getCurrentLifeCycleState()
 
          should be handled by a workflow related (or at least
             document) action listener.  | 
org.nuxeo.ecm.webapp.action.WebActionsBean.getCurrentLifeCycleState()
 
          Unused  | 
org.nuxeo.ecm.platform.ui.web.directory.DirectoryEntryOutputComponent.getDisplay()
 
          never used  | 
org.nuxeo.ecm.platform.ui.web.directory.ChainSelectOutputComponent.getDisplayIdAndLabel()
 
          use display=id|label|idAndLabel instead  | 
org.nuxeo.ecm.platform.util.RepositoryLocation.getEnabled()
 
          Unused  | 
org.nuxeo.ecm.webengine.app.impl.DefaultModule.getEnabledAdapterNames(Resource)
 
            | 
org.nuxeo.ecm.webengine.app.impl.DefaultModule.getEnabledAdapters(Resource)
 
            | 
org.nuxeo.ecm.directory.ldap.LDAPSession.getEntryFromSource(String)
 
            | 
org.nuxeo.ecm.platform.ui.web.directory.DirectoryEntryOutputComponent.getEntryId()
 
          use standard UIOutput.getValue() instead  | 
org.nuxeo.ecm.platform.syndication.SyndicationActionsBean.getFullSyndicationDocumentUrlInAtom()
 
          Unused  | 
org.nuxeo.ecm.platform.syndication.SyndicationActions.getFullSyndicationDocumentUrlInAtom()
 
          Unused  | 
org.nuxeo.ecm.platform.syndication.SyndicationActionsBean.getFullSyndicationDocumentUrlInRss()
 
          Unused  | 
org.nuxeo.ecm.platform.syndication.SyndicationActions.getFullSyndicationDocumentUrlInRss()
 
          Unused  | 
org.nuxeo.ecm.platform.syndication.SyndicationActionsBean.getFullSyndicationSearchUrlInAtom()
 
          Unused  | 
org.nuxeo.ecm.platform.syndication.SyndicationActions.getFullSyndicationSearchUrlInAtom()
 
          Unused  | 
org.nuxeo.ecm.platform.syndication.SyndicationActionsBean.getFullSyndicationSearchUrlInRss()
 
          Unused  | 
org.nuxeo.ecm.platform.syndication.SyndicationActions.getFullSyndicationSearchUrlInRss()
 
          Unused  | 
org.nuxeo.ecm.webengine.app.impl.DefaultContext.getHttpHeaders()
 
            | 
org.nuxeo.ecm.platform.picture.api.ImagingService.getImageMetadata(File)
 
            | 
org.nuxeo.ecm.platform.picture.core.imagej.ImageJMetadataUtils.getImageMetadata(File)
 
            | 
org.nuxeo.ecm.platform.picture.core.MetadataUtils.getImageMetadata(File)
 
            | 
org.nuxeo.ecm.platform.picture.core.mistral.MistralMetadataUtils.getImageMetadata(File)
 
            | 
org.nuxeo.ecm.platform.picture.ImagingComponent.getImageMetadata(File)
 
            | 
org.nuxeo.ecm.platform.picture.ejb.ImagingServiceBean.getImageMetadata(File)
 
            | 
org.nuxeo.ecm.platform.picture.api.ImagingService.getImageMetadata(InputStream)
 
            | 
org.nuxeo.ecm.platform.picture.core.imagej.ImageJMetadataUtils.getImageMetadata(InputStream)
 
            | 
org.nuxeo.ecm.platform.picture.core.MetadataUtils.getImageMetadata(InputStream)
 
            | 
org.nuxeo.ecm.platform.picture.core.mistral.MistralMetadataUtils.getImageMetadata(InputStream)
 
            | 
org.nuxeo.ecm.platform.picture.ImagingComponent.getImageMetadata(InputStream)
 
            | 
org.nuxeo.ecm.platform.picture.ejb.ImagingServiceBean.getImageMetadata(InputStream)
 
            | 
org.nuxeo.ecm.platform.ui.web.tag.fn.DocumentModelFunctions.getLabelFromId(String, String)
 
          use
             DirectoryFunctions.getDirectoryEntry(String, String)  | 
org.nuxeo.ecm.platform.types.adapter.TypeInfo.getLayout()
 
          use TypeInfo.getLayouts(String) instead, using mode
             BuiltinModes.ANY. Not used. Remove in 5.2 => No !
             still used from xhtml files.  | 
org.nuxeo.ecm.platform.types.Type.getLayout()
 
          use Type.getLayouts(String) instead, using mode
             BuiltinModes.ANY.  | 
org.nuxeo.ecm.platform.audit.service.LogEntryProvider.getLogEntriesFor(String, Map, boolean)
 
            | 
org.nuxeo.ecm.webengine.app.impl.DefaultModule.getMediaTypeId(MediaType)
 
            | 
org.nuxeo.ecm.platform.mimetype.ejb.MimetypeRegistryBean.getMimetypeEntryByName(String)
 
            | 
org.nuxeo.ecm.platform.mimetype.service.MimetypeRegistryService.getMimetypeFromStream(InputStream)
 
            | 
org.nuxeo.ecm.platform.mimetype.ejb.MimetypeRegistryBean.getMimetypeFromStream(InputStream)
 
            | 
org.nuxeo.ecm.platform.mimetype.service.MimetypeRegistryService.getMimetypeFromStreamWithDefault(InputStream, String)
 
            | 
org.nuxeo.ecm.platform.mimetype.ejb.MimetypeRegistryBean.getMimetypeFromStreamWithDefault(InputStream, String)
 
            | 
org.nuxeo.ecm.platform.usermanager.UserManager.getModelForUser(String)
 
          use UserManager.getUserModel(String)  | 
org.nuxeo.ecm.core.api.operation.ModificationSet.getModifcation(DocumentRef)
 
            | 
org.nuxeo.ecm.core.api.operation.ModificationSet.getModification(DocumentRef)
 
          returns a merged modification, unsafe to use this where order
             of notifications is important  | 
org.nuxeo.ecm.platform.notification.api.NotificationManager.getNotificationRegistry()
 
          should never have to return the registry : use delegation  | 
org.nuxeo.ecm.platform.ec.notification.ejb.bean.NotificationServiceBean.getNotificationRegistry()
 
          should not have to use the registry  | 
org.nuxeo.ecm.platform.login.LoginPluginRegistry.getPlugin()
 
            | 
org.nuxeo.ecm.webapp.pagination.ResultsProvidersCacheBean.getRecordStatus()
 
          use normal messaging in JSF with pageIndex and numberOfPages
             as params  | 
org.nuxeo.ecm.webengine.WebEngine.getRegistry()
 
            | 
org.nuxeo.ecm.webengine.app.impl.DefaultModule.getResourceBindings()
 
            | 
org.nuxeo.ecm.webengine.WebException.getReturnCode()
 
            | 
org.nuxeo.ecm.platform.usermanager.NuxeoPrincipalImpl.getRoles()
 
            | 
org.nuxeo.ecm.webengine.app.impl.DefaultModule.getRootObject(WebContext)
 
            | 
org.nuxeo.ecm.platform.ui.web.api.NavigationContext.getSelectedServerLocation()
 
          use getCurrentServerLocation instead  | 
org.nuxeo.ecm.webapp.context.NavigationContextBean.getSelectedServerLocation()
 
          use getCurrentServerLocation() instead  | 
org.nuxeo.runtime.remoting.RemotingService.getServerURI(String, int)
 
          must be removed since from runtime 1.5.1 the invoker protocol may be configurable  | 
org.nuxeo.ecm.core.storage.sql.coremodel.SQLRepository.getSession(long)
 
          unused  | 
org.nuxeo.ecm.core.storage.sql.ra.ConnectionFactoryImpl.getSession(long)
 
          unused  | 
org.nuxeo.ecm.core.api.CoreInstance.getSessions()
 
          unused  | 
org.nuxeo.ecm.webengine.app.impl.DefaultModule.getSkinPathPrefix()
 
            | 
org.nuxeo.ecm.spaces.api.SpaceManager.getSpace(String, SpaceProvider, CoreSession)
 
            | 
org.nuxeo.ecm.spaces.core.impl.SpaceManagerImpl.getSpace(String, SpaceProvider, CoreSession)
 
            | 
org.nuxeo.ecm.platform.ui.web.api.WebActions.getSubViewActionsList()
 
            | 
org.nuxeo.ecm.webapp.action.WebActionsBean.getSubViewActionsList()
 
            | 
org.nuxeo.ecm.platform.url.api.DocumentView.getTabId()
 
          should use the parameters map for the tab identifier.  | 
org.nuxeo.ecm.webengine.app.impl.DefaultModule.getTemplateFileExt()
 
            | 
org.nuxeo.ecm.platform.pictures.tiles.api.PictureTilingService.getTilesFromBlob(Blob, int, int, int)
 
            | 
org.nuxeo.ecm.platform.pictures.tiles.service.PictureTilingComponent.getTilesFromBlob(Blob, int, int, int)
 
            | 
org.nuxeo.ecm.platform.pictures.tiles.api.PictureTilingService.getTilesFromBlob(Blob, int, int, int, int, int, boolean)
 
            | 
org.nuxeo.ecm.platform.pictures.tiles.service.PictureTilingComponent.getTilesFromBlob(Blob, int, int, int, int, int, boolean)
 
            | 
org.nuxeo.ecm.platform.picture.web.PictureBookManagerBean.getTimeinterval()
 
            | 
org.nuxeo.ecm.platform.picture.web.PictureBookManager.getTimeinterval()
 
          The time interval is now handled by the PictureBook layout  | 
org.nuxeo.ecm.platform.ui.web.directory.DirectoryEntryOutputComponent.getTranslate()
 
          use DirectoryAwareComponent.getLocalize() instead  | 
org.nuxeo.ecm.core.api.DocumentModelTreeNode.getTreeLabel()
 
             | 
org.nuxeo.ecm.core.api.impl.DocumentModelTreeNodeImpl.getTreeLabel()
 
            | 
org.nuxeo.ecm.webengine.app.impl.DefaultModule.getType(String)
 
            | 
org.nuxeo.ecm.webengine.app.impl.DefaultModule.getTypes()
 
            | 
org.nuxeo.ecm.webengine.app.impl.DefaultContext.getUriInfo()
 
            | 
org.nuxeo.ecm.platform.content.template.service.ACEDescriptor.getUserName()
 
            | 
org.nuxeo.ecm.webengine.app.impl.DefaultModule.getValidator(String)
 
            | 
org.nuxeo.ecm.core.listener.AbstractEventListener.handleEvent(CoreEvent)
 
            | 
org.nuxeo.ecm.webapp.versioning.DocumentVersioningBean.incrementMajor(DocumentModel)
 
            | 
org.nuxeo.ecm.webapp.versioning.DocumentVersioningBean.incrementMinor(DocumentModel)
 
            | 
org.nuxeo.ecm.webapp.versioning.DocumentVersioningBean.incrementVersions(DocumentModel, VersioningActions)
 
            | 
org.nuxeo.ecm.webapp.pagination.SortActionsBean.init()
 
            | 
org.nuxeo.ecm.webapp.pagination.SortActions.init()
 
            | 
org.nuxeo.ecm.platform.relations.web.delegate.RelationManagerBusinessDelegate.initialize()
 
            | 
org.nuxeo.ecm.webapp.edit.lock.LockActionsBean.isCurrentDocumentLiveEditable()
 
          use LiveEditBootstrapHelper.isCurrentDocumentLiveEditable() instead  | 
org.nuxeo.ecm.platform.versioning.api.VersioningActions.isDefault()
 
          an enum should not hold a state value: it is reset when
             serializing it, see NXP-2516.  | 
org.nuxeo.ecm.webengine.app.impl.DefaultModule.isDerivedFrom(String)
 
            | 
org.nuxeo.ecm.core.listener.AbstractEventListener.notifyEvent(CoreEvent)
 
          use handleEvent instead - notifyEvent is a bad name
 This method is preserved for compatibility - remove it when all event listeners will be refactored  | 
org.nuxeo.runtime.test.NXRuntimeTestCase.oldLookupBundle(String)
 
            | 
org.nuxeo.runtime.remoting.RemotingService.ping(String, int)
 
          should no more be used - use instead AutoConfigurationService  | 
org.nuxeo.ecm.core.api.CoreSession.querySimpleFts(String)
 
          use SearchService instead. See
             http://doc.nuxeo.org/reference/html/search-service.html  | 
org.nuxeo.ecm.core.api.AbstractSession.querySimpleFts(String)
 
            | 
org.nuxeo.ecm.core.api.CoreSession.querySimpleFts(String, Filter)
 
          use SearchService instead. See
             http://doc.nuxeo.org/reference/html/search-service.html  | 
org.nuxeo.ecm.core.api.AbstractSession.querySimpleFts(String, Filter)
 
            | 
org.nuxeo.ecm.core.api.CoreSession.querySimpleFtsIt(String, Filter, int)
 
          use SearchService instead. See
             http://doc.nuxeo.org/reference/html/search-service.html  | 
org.nuxeo.ecm.core.api.AbstractSession.querySimpleFtsIt(String, Filter, int)
 
            | 
org.nuxeo.ecm.core.api.CoreSession.querySimpleFtsIt(String, String, Filter, int)
 
          use SearchService instead. See
             http://doc.nuxeo.org/reference/html/search-service.html  | 
org.nuxeo.ecm.core.api.AbstractSession.querySimpleFtsIt(String, String, Filter, int)
 
            | 
org.nuxeo.ecm.platform.filemanager.core.listener.MimetypeIconUpdater.recursivelyUpdateBlobs(DocumentModel, MimetypeRegistry, Iterator)
 
          now we use BlobsExtractor that cache path fields.  | 
org.nuxeo.ecm.core.search.api.client.SearchService.reindexAll(String, String, boolean)
 
          does nothing  | 
org.nuxeo.ecm.platform.search.ejb.SearchServiceBean.reindexAll(String, String, boolean)
 
            | 
org.nuxeo.ecm.webapp.search.SearchActionsBean.reindexDocuments()
 
            | 
org.nuxeo.ecm.webapp.search.SearchActions.reindexDocuments()
 
          does nothing  | 
org.nuxeo.ecm.webapp.search.SearchActionsBean.reindexDocuments(String)
 
            | 
org.nuxeo.ecm.webapp.search.SearchActions.reindexDocuments(String)
 
          does nothing  | 
org.nuxeo.ecm.core.api.operation.ModificationSet.removeModification(DocumentRef)
 
          returns a merged modification, unsafe to use this where order
             of notifications is important  | 
org.nuxeo.ecm.platform.picture.api.ImagingService.resize(InputStream, int, int)
 
          use {@link #resize(Blob, String, int, int, int)  | 
org.nuxeo.ecm.platform.picture.core.im.IMImageUtils.resize(InputStream, int, int)
 
            | 
org.nuxeo.ecm.platform.picture.core.imagej.ImageJImageUtils.resize(InputStream, int, int)
 
            | 
org.nuxeo.ecm.platform.picture.core.ImageUtils.resize(InputStream, int, int)
 
            | 
org.nuxeo.ecm.platform.picture.core.mistral.MistralImageUtils.resize(InputStream, int, int)
 
            | 
org.nuxeo.ecm.platform.picture.ImagingComponent.resize(InputStream, int, int)
 
            | 
org.nuxeo.ecm.platform.picture.api.ImagingService.rotate(InputStream, int)
 
          use {@link #rotate(Blob, int)  | 
org.nuxeo.ecm.platform.picture.core.im.IMImageUtils.rotate(InputStream, int)
 
            | 
org.nuxeo.ecm.platform.picture.core.imagej.ImageJImageUtils.rotate(InputStream, int)
 
            | 
org.nuxeo.ecm.platform.picture.core.ImageUtils.rotate(InputStream, int)
 
            | 
org.nuxeo.ecm.platform.picture.core.mistral.MistralImageUtils.rotate(InputStream, int)
 
            | 
org.nuxeo.ecm.platform.picture.ImagingComponent.rotate(InputStream, int)
 
            | 
org.nuxeo.ecm.platform.usermanager.UserManager.searchByMap(Map, Set)
 
          use UserManager.searchUsers(Map, Set)  | 
org.nuxeo.ecm.platform.usermanager.UserManager.searchGroups(String)
 
          see UserManager.searchGroups(String)  | 
org.nuxeo.ecm.platform.usermanager.UserManager.searchPrincipals(String)
 
          see UserManager.searchUsers(String)  | 
org.nuxeo.ecm.core.search.api.client.SearchService.searchQuery(ComposedNXQuery, int, int)
 
          use CoreSession#query instead  | 
org.nuxeo.ecm.core.search.api.client.SearchService.searchQuery(NativeQuery, int, int)
 
          use CoreSession#query instead  | 
org.nuxeo.ecm.core.search.api.client.SearchService.searchQuery(NativeQueryString, String, int, int)
 
          use CoreSession#query instead  | 
org.nuxeo.ecm.webapp.context.NavigationContextBean.setCurrentResultsProvider(PagedDocumentsProvider)
 
            | 
org.nuxeo.ecm.platform.ui.web.api.WebActions.setCurrentTabAction(String)
 
          use WebActions.getCurrentTabId()  | 
org.nuxeo.ecm.webapp.action.WebActionsBean.setCurrentTabAction(String)
 
            | 
org.nuxeo.ecm.platform.versioning.api.VersioningActions.setDefault(boolean)
 
          an enum should not hold a state value: it is reset when
             serializing it, see NXP-2516.  | 
org.nuxeo.ecm.platform.ui.web.directory.DirectoryEntryOutputComponent.setDisplay(String)
 
          never used  | 
org.nuxeo.ecm.platform.util.RepositoryLocation.setEnabled(Boolean)
 
          Unused  | 
org.nuxeo.ecm.platform.ui.web.directory.DirectoryEntryOutputComponent.setEntryId(String)
 
          use standard UIInput.setValue(Object) instead  | 
org.nuxeo.ecm.core.repository.jcr.properties.JCRComplexListProperty.setKeys(List)
 
            | 
org.nuxeo.ecm.platform.types.Type.setLayout(FieldWidget[])
 
            | 
org.nuxeo.ecm.platform.syndication.FeedItem.setTitle(String, String)
 
          Unused  | 
org.nuxeo.ecm.platform.ui.web.directory.DirectoryEntryOutputComponent.setTranslate(Boolean)
 
          use DirectoryAwareComponent.setLocalize(Boolean) instead  | 
org.nuxeo.ecm.platform.content.template.service.ACEDescriptor.setUserName(String)
 
            | 
org.nuxeo.ecm.platform.usermanager.UserManagerDescriptor.setUserSearchFields(String[])
 
          use setSubstringMatchUserSearchFields instead  | 
org.nuxeo.common.utils.TextTemplate.setVariables(Map)
 
          prefer use of TextTemplate.getVariables() then Properties
             .load()  | 
org.nuxeo.runtime.test.NXRuntimeTestCase.undeploy(String)
 
          use NXRuntimeTestCase.undeployContrib(String, String) instead  | 
org.nuxeo.runtime.test.runner.RuntimeHarness.undeploy(String)
 
          use RuntimeHarness.undeployContrib(String, String) instead  | 
org.nuxeo.runtime.test.NXRuntimeTestCase.undeployContrib(String)
 
          use NXRuntimeTestCase.undeployContrib(String, String) instead  | 
org.nuxeo.runtime.test.runner.RuntimeHarness.undeployContrib(String)
 
          use RuntimeHarness.undeployContrib(String, String) instead  | 
org.nuxeo.runtime.test.NXRuntimeTestCase.undeployContrib(URL, String)
 
            | 
org.nuxeo.ecm.platform.web.common.exceptionhandling.DefaultNuxeoExceptionHandler.unwrapException(Throwable)
 
          use ExceptionHelper.unwrapException(Throwable)  | 
org.nuxeo.ecm.webapp.contentbrowser.DocumentActionsBean.updateCurrentDocument()
 
          should update changeableDocument and use updateDocument  | 
org.nuxeo.ecm.platform.usermanager.UserManager.updateGroup(NuxeoGroup)
 
          use UserManager.updateGroup(DocumentModel)  | 
org.nuxeo.ecm.platform.usermanager.UserManager.updatePrincipal(NuxeoPrincipal)
 
          use UserManager.updateUser(DocumentModel)  | 
org.nuxeo.ecm.platform.login.LoginPluginRegistry.useCustomLoginPlugin()
 
            |