org.nuxeo.ecm.platform.relations.api.RelationManager.add(String, List)
since 5.5, use the Graph API directly
|
org.nuxeo.ecm.platform.relations.services.RelationService.add(String, List) |
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.cm.mailbox.Mailbox.addParticipantList(ParticipantsList) |
org.nuxeo.ecm.platform.picture.web.PictureManagerBean.addPicture() |
org.nuxeo.ecm.platform.picture.web.PictureManager.addPicture()
since 5.5
|
org.nuxeo.ecm.webengine.WebEngine.addResourceBinding(ResourceBinding)
resources are deprecated - you should use a jax-rs
application to declare more resources.
|
org.nuxeo.ecm.platform.ui.web.util.SuggestionActionsBean.addSelectionToList(ActionEvent)
|
org.nuxeo.ecm.platform.ui.web.util.SuggestionActionsBean.addSingleSelection(ActionEvent)
|
org.nuxeo.ecm.platform.routing.api.DocumentRoutingService.canUserValidateRoute(NuxeoPrincipal)
|
org.nuxeo.ecm.platform.routing.web.RouteSecurityChecker.canValidateRoute() |
org.nuxeo.ecm.webapp.filemanager.FileManageActionsBean.canWrite() |
org.nuxeo.ecm.webapp.contentbrowser.DocumentActions.checkCurrentDocAndProcessSelectPage(String, String, Boolean, String)
|
org.nuxeo.ecm.webapp.contentbrowser.DocumentActions.checkCurrentDocAndProcessSelectRow(String, String, String, Boolean, String)
|
org.nuxeo.ecm.core.api.CoreSession.checkIn(DocumentRef, VersionModel)
use #checkIn(DocumentRef, String) instead
|
org.nuxeo.ecm.core.api.AbstractSession.checkIn(DocumentRef, VersionModel) |
org.nuxeo.ecm.platform.relations.api.RelationManager.clear(String)
since 5.5, use the Graph API directly
|
org.nuxeo.ecm.platform.relations.services.RelationService.clear(String) |
org.nuxeo.ecm.core.api.impl.DocumentModelImpl.clearFlags()
unused
|
org.nuxeo.ecm.core.api.impl.DocumentModelImpl.clearFlags(long)
unused
|
org.nuxeo.ecm.directory.Session.commit()
do not use, the container manages transactions.
|
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.theme.localconfiguration.LocalThemeConfig.computePagePath() |
org.nuxeo.ecm.core.api.impl.DocumentModelImpl.copyContentInto(DocumentModelImpl)
unused
|
org.nuxeo.ecm.webapp.clipboard.ClipboardActionsBean.copySelection(List) |
org.nuxeo.ecm.platform.comment.api.CommentManager.createComment(DocumentModel, String)
|
org.nuxeo.ecm.platform.forms.layout.facelets.TagConfigFactory.createComponentConfig(TagConfig, TagAttributes, FaceletHandler, String, String)
|
org.nuxeo.ecm.platform.forms.layout.facelets.TagConfigFactory.createConverterConfig(TagConfig, TagAttributes, FaceletHandler, String)
|
org.nuxeo.ecm.core.api.DocumentModelFactory.createDocumentModel(String, String, DocumentType, String[])
unused
|
org.nuxeo.ecm.platform.usermanager.UserManager.createGroup(NuxeoGroup)
|
org.nuxeo.ecm.platform.usermanager.UserManager.createPrincipal(NuxeoPrincipal)
|
org.nuxeo.ecm.core.api.CoreSession.createProxy(DocumentRef, DocumentRef, VersionModel, boolean)
|
org.nuxeo.ecm.core.api.AbstractSession.createProxy(DocumentRef, DocumentRef, VersionModel, boolean) |
org.nuxeo.ecm.core.model.Session.createProxyForVersion(Document, Document, String) |
org.nuxeo.ecm.platform.forms.layout.facelets.TagConfigFactory.createTagConfig(TagConfig, TagAttributes, FaceletHandler)
|
org.nuxeo.ecm.platform.forms.layout.facelets.TagConfigFactory.createValidatorConfig(TagConfig, TagAttributes, FaceletHandler, String)
|
org.nuxeo.ecm.platform.ui.web.tag.fn.DocumentModelFunctions.defaultValue(String, String)
use defaultValue(propertyName) instead
|
org.nuxeo.ecm.platform.usermanager.UserManager.deleteGroup(NuxeoGroup)
|
org.nuxeo.ecm.platform.usermanager.UserManager.deletePrincipal(NuxeoPrincipal)
|
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)
|
org.nuxeo.runtime.test.runner.RuntimeHarness.deployContrib(String)
|
org.nuxeo.ecm.webapp.pagination.SortActionsBean.destroy() |
org.nuxeo.ecm.webapp.pagination.SortActions.destroy() |
org.nuxeo.ecm.webapp.security.SecurityActions.displayInheritedPermissions()
|
org.nuxeo.ecm.webapp.contentbrowser.DocumentListingActionsBean.documentChanged()
this information is now held by content views
|
org.nuxeo.ecm.http.client.NuxeoServer.doRestletPostCall(List, Map, InputStream)
|
org.nuxeo.ecm.webapp.contentbrowser.DocumentActions.download() |
org.nuxeo.ecm.webapp.contentbrowser.DocumentActions.downloadFromList() |
org.nuxeo.ecm.webapp.contentbrowser.DocumentActions.editDocument()
since 5.3: edit views are managed through tabs, the edit
view is not used.
|
org.nuxeo.ecm.webengine.model.impl.ModuleImpl.flushRootResourcesCache()
resources are deprecated - you should use a jax-rs
application to declare more resources.
|
org.nuxeo.common.utils.IdUtils.generateId(String)
|
org.nuxeo.common.utils.IdUtils.generatePathSegment(String)
use PathSegmentService instead
|
org.nuxeo.ecm.core.api.CoreSession.generateVersionLabelFor(DocumentRef)
use #checkIn(DocumentRef, String) directly
|
org.nuxeo.ecm.platform.actions.ActionService.getActionRegistry()
since 5.5: use interface methods on ActionManager instead of
public methods on ActionService.
|
org.nuxeo.ecm.platform.syndication.SyndicationActionsBean.getActionsForSyndication()
Unused
|
org.nuxeo.ecm.platform.syndication.SyndicationActions.getActionsForSyndication()
Unused
|
org.nuxeo.ecm.core.event.impl.EventServiceImpl.getActiveAsyncTaskCount()
|
org.nuxeo.ecm.platform.forms.layout.facelets.FaceletHandlerHelper.getAliasTagHandler(Map, FaceletHandler)
|
org.nuxeo.ecm.platform.audit.api.NXAuditEvents.getAuditableEventNames() |
org.nuxeo.ecm.platform.usermanager.UserManager.getAvailableGroups()
|
org.nuxeo.ecm.webapp.contentbrowser.DocumentListingActionsBean.getAvailableLayoutsForCurrentDocument()
this information is now held by content views
|
org.nuxeo.ecm.webapp.contentbrowser.DocumentListingActionsBean.getAvailableLayoutsForDocument(DocumentModel)
this information is now held by content views
|
org.nuxeo.ecm.platform.localconfiguration.theme.ThemeConfigurationActions.getAvailablePages()
since 5.5: local theme configuration now only handles
flavors.
|
org.nuxeo.ecm.platform.localconfiguration.theme.ThemeConfigurationActions.getAvailablePerspectives()
since 5.5: local theme configuration now only handles
flavors.
|
org.nuxeo.ecm.platform.usermanager.UserManager.getAvailablePrincipals()
|
org.nuxeo.ecm.platform.localconfiguration.theme.ThemeConfigurationActions.getAvailableThemes()
since 5.5: local theme configuration now only handles
flavors.
|
org.nuxeo.ecm.webengine.WebEngine.getBindings()
resources are deprecated - you should use a jax-rs
application to declare more resources.
|
org.nuxeo.ecm.webapp.clipboard.ClipboardActionsBean.getCanEditListDocs(String) |
org.nuxeo.ecm.webapp.contentbrowser.DocumentActions.getChildrenSelectModel()
since 5.4: SelectDataModel usage is now useless
since content views provide selection wrappers.
|
org.nuxeo.ecm.classification.api.ClassificationService.getClassifiableDocumentTypes() |
org.nuxeo.ecm.core.api.impl.DocumentModelImpl.getClient()
|
org.nuxeo.ecm.webapp.contentbrowser.DocumentActions.getComment()
since 5.4: comment can be put directly in the document
context data using key 'request/comment'.
|
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.forms.layout.facelets.FaceletHandlerHelper.getConvertHandler(TagAttributes, FaceletHandler, String)
|
org.nuxeo.ecm.webengine.session.UserSession.getCoreSession()
|
org.nuxeo.ecm.webengine.session.UserSession.getCoreSession(String)
|
org.nuxeo.ecm.platform.types.adapter.TypeInfoAdapter.getCoreType()
|
org.nuxeo.ecm.webapp.versioning.DocumentVersioningBean.getCreateSnapshot() |
org.nuxeo.ecm.webapp.versioning.DocumentVersioning.getCreateSnapshot()
since 5.4
|
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.webapp.versioning.DocumentVersioningBean.getCurrentItemVersioningOptions() |
org.nuxeo.ecm.webapp.versioning.DocumentVersioning.getCurrentItemVersioningOptions()
since 5.4
|
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() |
org.nuxeo.ecm.core.api.CoreSession.getDataModel(DocumentRef, String)
not used by client code
|
org.nuxeo.ecm.core.api.AbstractSession.getDataModel(DocumentRef, String) |
org.nuxeo.ecm.core.api.CoreSession.getDataModelField(DocumentRef, String, String)
unused
|
org.nuxeo.ecm.core.api.AbstractSession.getDataModelField(DocumentRef, String, String) |
org.nuxeo.ecm.core.api.CoreSession.getDataModelFields(DocumentRef, String, String[])
unused
|
org.nuxeo.ecm.core.api.AbstractSession.getDataModelFields(DocumentRef, String, String[]) |
org.nuxeo.ecm.core.api.DocumentModel.getDeclaredFacets()
|
org.nuxeo.ecm.core.api.impl.DocumentModelImpl.getDeclaredFacets() |
org.nuxeo.ecm.core.api.DocumentModel.getDeclaredSchemas()
|
org.nuxeo.ecm.core.api.impl.DocumentModelImpl.getDeclaredSchemas() |
org.nuxeo.ecm.webapp.versioning.DocumentVersioningBean.getDefaultCreateSnapshot() |
org.nuxeo.ecm.webapp.versioning.DocumentVersioning.getDefaultCreateSnapshot()
since 5.4
|
org.nuxeo.ecm.platform.ui.web.directory.DirectoryEntryOutputComponent.getDisplay()
never used
|
org.nuxeo.ecm.webapp.versioning.DocumentVersioningBean.getDisplayCreateSnapshotOption() |
org.nuxeo.ecm.webapp.versioning.DocumentVersioning.getDisplayCreateSnapshotOption()
since 5.4
|
org.nuxeo.ecm.platform.ui.web.directory.ChainSelectOutputComponent.getDisplayIdAndLabel()
use display=id|label|idAndLabel instead
|
org.nuxeo.ecm.core.api.CoreSession.getDocument(DocumentRef, String[])
unused
|
org.nuxeo.ecm.core.api.AbstractSession.getDocument(DocumentRef, String[])
unused
|
org.nuxeo.ecm.platform.util.RepositoryLocation.getEnabled()
Unused
|
org.nuxeo.theme.localconfiguration.LocalThemeConfig.getEngine() |
org.nuxeo.ecm.platform.ui.web.directory.DirectoryEntryOutputComponent.getEntryId()
|
org.nuxeo.ecm.platform.forms.layout.facelets.FaceletHandlerHelper.getErrorComponentHandler(String)
|
org.nuxeo.ecm.platform.actions.ActionService.getFilterRegistry()
since 5.5: use interface methods on ActionManager instead of
public methods on ActionService.
|
org.nuxeo.ecm.core.api.DocumentModel.getFlags()
unused
|
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.platform.forms.layout.facelets.FaceletHandlerHelper.getHtmlComponentHandler(TagAttributes, FaceletHandler, String, String)
|
org.nuxeo.ecm.webengine.app.DefaultContext.getHttpHeaders() |
org.nuxeo.ecm.platform.picture.api.ImagingService.getImageMimeType(InputStream)
since 5.5
|
org.nuxeo.ecm.platform.picture.ImagingComponent.getImageMimeType(InputStream) |
org.nuxeo.ecm.webapp.versioning.DocumentVersioningBean.getIncRulesResult() |
org.nuxeo.ecm.webapp.versioning.DocumentVersioning.getIncRulesResult()
since 5.4
|
org.nuxeo.runtime.deployment.preprocessor.DeploymentPreprocessor.getJarId(String) |
org.nuxeo.ecm.platform.ui.web.tag.fn.DocumentModelFunctions.getLabelFromId(String, String)
|
org.nuxeo.ecm.core.api.CoreSession.getLastVersion(DocumentRef)
|
org.nuxeo.ecm.platform.types.Type.getLayout()
|
org.nuxeo.ecm.platform.types.adapter.TypeInfo.getLayout()
|
org.nuxeo.ecm.webapp.contentbrowser.DocumentListingActionsBean.getLayoutForCurrentDocument()
this information is now held by content views
|
org.nuxeo.ecm.webapp.contentbrowser.DocumentListingActionsBean.getLayoutForDocument(DocumentModel)
this information is now held by content views
|
org.nuxeo.ecm.core.api.DocumentModel.getLock()
|
org.nuxeo.ecm.core.api.impl.DocumentModelImpl.getLock() |
org.nuxeo.ecm.core.api.CoreSession.getLock(DocumentRef)
|
org.nuxeo.ecm.core.api.AbstractSession.getLock(DocumentRef) |
org.nuxeo.ecm.platform.audit.web.listener.ejb.ContentHistoryActionsBean.getLogComment(LogEntry) |
org.nuxeo.ecm.platform.audit.web.listener.ContentHistoryActions.getLogComment(LogEntry) |
org.nuxeo.ecm.platform.audit.service.LogEntryProvider.getLogEntriesFor(String, Map, boolean) |
org.nuxeo.ecm.platform.audit.web.listener.ejb.ContentHistoryActionsBean.getLogLinkedDocument(LogEntry) |
org.nuxeo.ecm.platform.audit.web.listener.ContentHistoryActions.getLogLinkedDocument(LogEntry) |
org.nuxeo.ecm.core.api.facet.VersioningDocument.getMajorVersion()
use VersioningService#getVersionLabel instead
|
org.nuxeo.ecm.platform.versioning.api.VersioningManager.getMajorVersionPropertyName(String)
since 5.4, use DocumentModel#MAJOR_VERSION directly
|
org.nuxeo.ecm.platform.versioning.service.VersioningManagerImpl.getMajorVersionPropertyName(String) |
org.nuxeo.ecm.platform.forms.layout.facelets.FaceletHandlerHelper.getMessageComponentHandler(String, String, String)
|
org.nuxeo.ecm.platform.mimetype.service.MimetypeRegistryService.getMimetypeFromStream(InputStream) |
org.nuxeo.ecm.platform.mimetype.service.MimetypeRegistryService.getMimetypeFromStreamWithDefault(InputStream, String) |
org.nuxeo.ecm.platform.picture.core.libraryselector.LibrarySelectorService.getMimeUtils() |
org.nuxeo.ecm.platform.picture.core.libraryselector.LibrarySelector.getMimeUtils()
since 5.5. ImagingService use MimetypeRegistry service to get
the mime type of an image.
|
org.nuxeo.ecm.core.api.facet.VersioningDocument.getMinorVersion()
use VersioningService#getVersionLabel instead
|
org.nuxeo.ecm.platform.versioning.api.VersioningManager.getMinorVersionPropertyName(String)
since 5.4, use DocumentModel#MINOR_VERSION directly
|
org.nuxeo.ecm.platform.versioning.service.VersioningManagerImpl.getMinorVersionPropertyName(String) |
org.nuxeo.theme.localconfiguration.LocalThemeConfig.getMode() |
org.nuxeo.ecm.platform.usermanager.UserManager.getModelForUser(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.relations.api.RelationManager.getObjects(String, Node, Node)
since 5.5, use the Graph API directly
|
org.nuxeo.ecm.platform.relations.services.RelationService.getObjects(String, Node, Node) |
org.nuxeo.ecm.webapp.tree.TreeManager.getOrderableQueryModelDescriptor(String)
|
org.nuxeo.theme.localconfiguration.LocalThemeConfig.getPage() |
org.nuxeo.cm.mailbox.Mailbox.getParticipantListIds()
|
org.nuxeo.cm.mailbox.Mailbox.getParticipantLists()
|
org.nuxeo.cm.mailbox.Mailbox.getParticipantListTemplate()
|
org.nuxeo.ecm.webengine.model.impl.ModuleConfiguration.getPath()
|
org.nuxeo.theme.localconfiguration.LocalThemeConfig.getPerspective() |
org.nuxeo.ecm.platform.login.LoginPluginRegistry.getPlugin() |
org.nuxeo.ecm.platform.relations.api.RelationManager.getPredicates(String, Node, Node)
since 5.5, use the Graph API directly
|
org.nuxeo.ecm.platform.relations.services.RelationService.getPredicates(String, Node, Node) |
org.nuxeo.ecm.core.api.CoreSession.getProxyVersions(DocumentRef, DocumentRef)
|
org.nuxeo.ecm.webapp.directory.DirectoryTreeDescriptor.getQuerymodel()
|
org.nuxeo.ecm.webapp.tree.TreeManager.getQueryModelDescriptor(String)
|
org.nuxeo.ecm.core.security.AbstractSecurityPolicy.getQueryTransformer() |
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.platform.contentview.jsf.ContentView.getResultLayoutColumns()
|
org.nuxeo.ecm.webengine.WebException.getReturnCode() |
org.nuxeo.ecm.platform.usermanager.NuxeoPrincipalImpl.getRoles() |
org.nuxeo.ecm.webengine.model.impl.ModuleImpl.getRootObject(WebContext)
Use WebApplication to declare modules
|
org.nuxeo.ecm.webengine.model.impl.ModuleImpl.getRootType()
Use WebApplication to declare modules
|
org.nuxeo.ecm.platform.query.api.PageSelections.getRowCount()
|
org.nuxeo.ecm.platform.query.api.PageSelections.getRows()
|
org.nuxeo.ecm.webapp.contentbrowser.DocumentActions.getSectionChildrenSelectModel()
since 5.4: SelectDataModel usage is now useless
since content views provide selection wrappers.
|
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.platform.relations.api.RelationManager.getStatements(String)
since 5.5, use the Graph API directly
|
org.nuxeo.ecm.platform.relations.services.RelationService.getStatements(String) |
org.nuxeo.ecm.platform.relations.api.RelationManager.getStatements(String, Statement)
since 5.5, use the Graph API directly
|
org.nuxeo.ecm.platform.relations.services.RelationService.getStatements(String, Statement) |
org.nuxeo.ecm.platform.relations.api.RelationManager.getSubjects(String, Node, Node)
since 5.5, use the Graph API directly
|
org.nuxeo.ecm.platform.relations.services.RelationService.getSubjects(String, Node, Node) |
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.theme.localconfiguration.LocalThemeConfig.getTheme() |
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.ui.web.directory.DirectoryEntryOutputComponent.getTranslate()
|
org.nuxeo.ecm.webengine.app.DefaultContext.getUriInfo() |
org.nuxeo.ecm.platform.content.template.service.ACEDescriptor.getUserName() |
org.nuxeo.ecm.platform.forms.layout.facelets.FaceletHandlerHelper.getValidateHandler(TagAttributes, FaceletHandler, String)
|
org.nuxeo.ecm.core.api.CoreSession.getVersion(String, VersionModel)
use version ids directly
|
org.nuxeo.ecm.core.api.facet.VersioningDocument.getVersionAsString(int, int, char)
unused
|
org.nuxeo.ecm.core.versioning.VersioningDocumentAdapter.getVersionAsString(int, int, char) |
org.nuxeo.ecm.webapp.versioning.DocumentVersioning.getVersioningOptionsMap(DocumentModel)
since 5.4
|
org.nuxeo.ecm.platform.ui.web.rest.descriptors.URLPatternDescriptor.getViewIds()
|
org.nuxeo.ecm.platform.forms.layout.api.LayoutRowDefinition.getWidgets()
|
org.nuxeo.ecm.core.listener.AbstractEventListener.handleEvent(CoreEvent) |
org.nuxeo.ecm.core.api.impl.DocumentModelImpl.hasFlags(long)
unused
|
org.nuxeo.ecm.platform.relations.api.RelationManager.hasResource(String, Resource)
since 5.5, use the Graph API directly
|
org.nuxeo.ecm.platform.relations.services.RelationService.hasResource(String, Resource) |
org.nuxeo.ecm.platform.relations.api.RelationManager.hasStatement(String, Statement)
since 5.5, use the Graph API directly
|
org.nuxeo.ecm.platform.relations.services.RelationService.hasStatement(String, Statement) |
org.nuxeo.ecm.core.api.facet.VersioningDocument.incrementMajor()
let VersioningService do its work
|
org.nuxeo.ecm.core.versioning.VersioningDocumentAdapter.incrementMajor() |
org.nuxeo.ecm.platform.versioning.api.VersioningManager.incrementMajor(DocumentModel)
since 5.4
|
org.nuxeo.ecm.platform.versioning.service.VersioningManagerImpl.incrementMajor(DocumentModel) |
org.nuxeo.ecm.core.api.facet.VersioningDocument.incrementMinor()
let VersioningService do its work
|
org.nuxeo.ecm.core.versioning.VersioningDocumentAdapter.incrementMinor() |
org.nuxeo.ecm.platform.versioning.api.VersioningManager.incrementMinor(DocumentModel)
since 5.4
|
org.nuxeo.ecm.platform.versioning.service.VersioningManagerImpl.incrementMinor(DocumentModel) |
org.nuxeo.ecm.core.api.facet.VersioningDocument.incrementVersions()
unused
|
org.nuxeo.ecm.core.versioning.VersioningDocumentAdapter.incrementVersions() |
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.classification.api.ClassificationService.isClassifiable(String) |
org.nuxeo.ecm.webapp.edit.lock.LockActionsBean.isCurrentDocumentLiveEditable()
use LiveEditBootstrapHelper.isCurrentDocumentLiveEditable()
instead
|
org.nuxeo.ecm.core.api.CoreSession.isDirty(DocumentRef)
|
org.nuxeo.ecm.core.api.AbstractSession.isDirty(DocumentRef) |
org.nuxeo.cm.distribution.DistributionInfo.isEmpty(List)
has nothing to do with this interface
|
org.nuxeo.ecm.core.security.AbstractSecurityPolicy.isExpressibleInQuery() |
org.nuxeo.ecm.webapp.liveedit.LiveEditBootstrapHelper.isLiveEditable(Blob)
use
#isLiveEditable(DocumentModel doc, String blobXpath)
|
org.nuxeo.ecm.platform.ui.web.util.ComponentTagUtils.isMethodReference(String)
since 5.5: method and value references are now equivalent
with jboss EL
|
org.nuxeo.ecm.platform.query.api.AbstractPageProvider.last() |
org.nuxeo.ecm.core.api.security.ACP.listUsernamesForAnyPermission(Set)
Use the method from UserManager service getUsersForPermission instead
|
org.nuxeo.ecm.core.api.security.ACP.listUsernamesForPermission(String)
Use the method from UserManager service getUsersForPermission instead
|
org.nuxeo.ecm.core.api.impl.DocumentHelper.loadData(DocumentModel, Map)
unused
|
org.nuxeo.ecm.core.api.impl.DocumentHelper.loadData(DocumentModel, String, Map)
unused
|
org.nuxeo.ecm.core.api.DocumentModelFactory.newDocument(DocumentModel, DocumentType)
unused
|
org.nuxeo.ecm.core.api.DocumentModelFactory.newDocument(DocumentModel, String)
unused
|
org.nuxeo.ecm.core.api.DocumentModelFactory.newDocument(DocumentModel, String, DocumentType)
unused
|
org.nuxeo.ecm.core.api.DocumentModelFactory.newDocument(DocumentModel, String, String)
unused
|
org.nuxeo.ecm.platform.query.api.AbstractPageProvider.next() |
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.remoting.RemotingService.ping(String, int)
|
org.nuxeo.ecm.platform.query.api.AbstractPageProvider.previous() |
org.nuxeo.ecm.webapp.contentbrowser.DocumentActions.processSelectPage(String, String, Boolean)
|
org.nuxeo.ecm.webapp.contentbrowser.DocumentActions.processSelectRow(String, String, String, Boolean)
|
org.nuxeo.ecm.platform.relations.api.RelationManager.query(String, String, String, String)
since 5.5, use the Graph API directly
|
org.nuxeo.ecm.platform.relations.services.RelationService.query(String, String, String, String) |
org.nuxeo.ecm.core.api.CoreSession.querySimpleFts(String)
use SearchService instead. See ://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 ://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 ://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 ://doc.nuxeo.org/reference/html/search-service.html
|
org.nuxeo.ecm.core.api.AbstractSession.querySimpleFtsIt(String, String, Filter, int) |
org.nuxeo.ecm.platform.relations.api.RelationManager.read(String, InputStream, String, String)
since 5.5, use the Graph API directly
|
org.nuxeo.ecm.platform.relations.services.RelationService.read(String, InputStream, String, String) |
org.nuxeo.ecm.platform.filemanager.core.listener.MimetypeIconUpdater.recursivelyUpdateBlobs(DocumentModel, MimetypeRegistry, Iterator)
|
org.nuxeo.ecm.core.api.facet.VersioningDocument.refetchDoc()
unused
|
org.nuxeo.ecm.core.versioning.VersioningDocumentAdapter.refetchDoc() |
org.nuxeo.ecm.webapp.search.SearchActions.reindexDocuments()
does nothing
|
org.nuxeo.ecm.webapp.search.SearchActionsBean.reindexDocuments() |
org.nuxeo.ecm.webapp.search.SearchActions.reindexDocuments(String)
does nothing
|
org.nuxeo.ecm.webapp.search.SearchActionsBean.reindexDocuments(String) |
org.nuxeo.ecm.platform.relations.api.RelationManager.remove(String, List)
since 5.5, use the Graph API directly
|
org.nuxeo.ecm.platform.relations.services.RelationService.remove(String, List) |
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.cm.mailbox.Mailbox.removeParticipantList(String)
|
org.nuxeo.ecm.webengine.WebEngine.removeResourceBinding(ResourceBinding)
resources are deprecated - you should use a jax-rs
application to declare more resources.
|
org.nuxeo.ecm.core.api.CoreSession.restoreToVersion(DocumentRef, VersionModel)
|
org.nuxeo.ecm.core.api.AbstractSession.restoreToVersion(DocumentRef, VersionModel) |
org.nuxeo.ecm.core.api.CoreSession.restoreToVersion(DocumentRef, VersionModel, boolean)
|
org.nuxeo.ecm.core.api.AbstractSession.restoreToVersion(DocumentRef, VersionModel, boolean) |
org.nuxeo.ecm.platform.query.api.AbstractPageProvider.rewind() |
org.nuxeo.ecm.directory.Session.rollback()
do not use, the container manages transactions.
|
org.nuxeo.ecm.platform.usermanager.UserManager.searchByMap(Map, Set)
|
org.nuxeo.ecm.platform.usermanager.UserManager.searchPrincipals(String)
|
org.nuxeo.ecm.webapp.directory.DirectoryUIActionsBean.selectDirectory(String) |
org.nuxeo.ecm.platform.ui.web.api.WebActions.selectTabAction()
since 5.4: useless, and does nothing
|
org.nuxeo.ecm.webapp.action.WebActionsBean.selectTabAction() |
org.nuxeo.ecm.platform.comment.web.ThreadEntry.setComment(DocumentModel) |
org.nuxeo.ecm.webapp.contentbrowser.DocumentActions.setComment(String)
since 5.4: comment can be put directly in the document
context data using key 'request/comment'.
|
org.nuxeo.ecm.webapp.versioning.DocumentVersioningBean.setCreateSnapshot(boolean) |
org.nuxeo.ecm.webapp.versioning.DocumentVersioning.setCreateSnapshot(boolean)
since 5.4
|
org.nuxeo.ecm.platform.ui.web.api.WebActions.setCurrentTabAction(String)
|
org.nuxeo.ecm.webapp.action.WebActionsBean.setCurrentTabAction(String) |
org.nuxeo.ecm.platform.comment.web.ThreadEntry.setDepth(int) |
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)
|
org.nuxeo.ecm.core.api.impl.DocumentModelImpl.setFlags(long)
unused
|
org.nuxeo.ecm.platform.types.Type.setLayout(FieldWidget[]) |
org.nuxeo.ecm.webapp.contentbrowser.DocumentListingActionsBean.setLayoutForCurrentDocument(String)
this information is now held by content views
|
org.nuxeo.ecm.webapp.contentbrowser.DocumentListingActionsBean.setLayoutForDocument(DocumentModel, String)
this information is now held by content views
|
org.nuxeo.ecm.core.api.CoreSession.setLock(DocumentRef, String)
|
org.nuxeo.ecm.core.api.AbstractSession.setLock(DocumentRef, String) |
org.nuxeo.ecm.core.api.DocumentModel.setLock(String)
|
org.nuxeo.ecm.core.api.impl.DocumentModelImpl.setLock(String) |
org.nuxeo.ecm.core.api.facet.VersioningDocument.setMajorVersion(Long)
let VersioningService do its work
|
org.nuxeo.ecm.core.versioning.VersioningDocumentAdapter.setMajorVersion(Long) |
org.nuxeo.ecm.core.api.facet.VersioningDocument.setMinorVersion(Long)
let VersioningService do its work
|
org.nuxeo.ecm.core.versioning.VersioningDocumentAdapter.setMinorVersion(Long) |
org.nuxeo.ecm.webapp.security.UserManagementActions.setSelectedUser(String)
|
org.nuxeo.ecm.platform.ui.web.api.WebActions.setSubTabsList(List)
since 5.4.2: useless
|
org.nuxeo.ecm.webapp.action.WebActionsBean.setSubTabsList(List) |
org.nuxeo.ecm.platform.ui.web.api.WebActions.setTabsList(List)
since 5.4.2: useless
|
org.nuxeo.ecm.webapp.action.WebActionsBean.setTabsList(List) |
org.nuxeo.ecm.platform.syndication.FeedItem.setTitle(String, String)
Unused
|
org.nuxeo.ecm.platform.ui.web.directory.DirectoryEntryOutputComponent.setTranslate(Boolean)
|
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)
|
org.nuxeo.launcher.commons.text.TextTemplate.setVariables(Map)
|
org.nuxeo.ecm.platform.relations.api.RelationManager.size(String)
since 5.5, use the Graph API directly
|
org.nuxeo.ecm.platform.relations.services.RelationService.size(String) |
org.nuxeo.ecm.platform.localconfiguration.theme.ThemeConfigurationActions.themeChange(ActionEvent)
since 5.5: local theme configuration now only handles
flavors.
|
org.nuxeo.runtime.test.NXRuntimeTestCase.undeploy(String)
|
org.nuxeo.runtime.test.runner.RuntimeHarness.undeploy(String)
|
org.nuxeo.runtime.test.NXRuntimeTestCase.undeployContrib(String)
|
org.nuxeo.runtime.test.runner.RuntimeHarness.undeployContrib(String)
|
org.nuxeo.ecm.core.api.DocumentModel.unlock()
|
org.nuxeo.ecm.core.api.CoreSession.unlock(DocumentRef)
|
org.nuxeo.ecm.core.api.AbstractSession.unlock(DocumentRef) |
org.nuxeo.ecm.platform.actions.ActionService.unregisterFilterFactory(FilterFactory)
seems not used in Nuxeo - should be removed - and anyway the
merge is not done
|
org.nuxeo.ecm.platform.web.common.exceptionhandling.DefaultNuxeoExceptionHandler.unwrapException(Throwable)
|
org.nuxeo.ecm.webapp.contentbrowser.DocumentActions.updateDocument()
|
org.nuxeo.ecm.platform.usermanager.UserManager.updateGroup(NuxeoGroup)
|
org.nuxeo.ecm.platform.usermanager.UserManager.updatePrincipal(NuxeoPrincipal)
|
org.nuxeo.ecm.platform.login.LoginPluginRegistry.useCustomLoginPlugin() |
org.nuxeo.ecm.platform.relations.api.RelationManager.write(String, OutputStream, String, String)
since 5.5, use the Graph API directly
|
org.nuxeo.ecm.platform.relations.services.RelationService.write(String, OutputStream, String, String) |
org.nuxeo.connect.update.impl.xml.PackageDefinitionImpl.write(XmlWriter) |