Nuxeo Enterprise Platform 5.4

Uses of Interface
org.nuxeo.ecm.core.api.VersionModel

Packages that use VersionModel
org.nuxeo.ecm.core.api The core API of the Nuxeo platform, including: CoreSession, DocumentModel, Blob
org.nuxeo.ecm.core.api.ejb   
org.nuxeo.ecm.core.api.impl   
org.nuxeo.ecm.core.api.repository.cache   
org.nuxeo.ecm.core.model   
org.nuxeo.ecm.core.storage.sql.coremodel   
org.nuxeo.ecm.platform.ui.web.api   
org.nuxeo.ecm.webapp.context   
org.nuxeo.ecm.webapp.versioning   
 

Uses of VersionModel in org.nuxeo.ecm.core.api
 

Methods in org.nuxeo.ecm.core.api that return VersionModel
 VersionModel AbstractSession.getLastVersion(DocumentRef docRef)
           
 VersionModel CoreSession.getLastVersion(DocumentRef docRef)
          Deprecated. use CoreSession.getLastDocumentVersion(org.nuxeo.ecm.core.api.DocumentRef) instead
 

Methods in org.nuxeo.ecm.core.api that return types with arguments of type VersionModel
 java.util.List<VersionModel> AbstractSession.getVersionsForDocument(DocumentRef docRef)
           
 java.util.List<VersionModel> CoreSession.getVersionsForDocument(DocumentRef docRef)
          Retrieves all the versions for a specified document.
 

Methods in org.nuxeo.ecm.core.api with parameters of type VersionModel
 DocumentModel AbstractSession.checkIn(DocumentRef docRef, VersionModel ver)
          Deprecated. 
 DocumentModel CoreSession.checkIn(DocumentRef docRef, VersionModel version)
          Deprecated. use #checkIn(DocumentRef, String) instead
 DocumentModel AbstractSession.createProxy(DocumentRef parentRef, DocumentRef docRef, VersionModel version, boolean overwriteExistingProxy)
          Deprecated. 
 DocumentModel CoreSession.createProxy(DocumentRef parentRef, DocumentRef docRef, VersionModel version, boolean overwriteExistingProxy)
          Deprecated. use CoreSession.createProxy(DocumentRef, DocumentRef) or CoreSession.publishDocument(DocumentModel, DocumentModel, boolean) instead
 DocumentModel AbstractSession.getDocumentWithVersion(DocumentRef docRef, VersionModel version)
           
 DocumentModel CoreSession.getDocumentWithVersion(DocumentRef docRef, VersionModel version)
          Returns a document that represents the specified version of the document.
 DocumentModel AbstractSession.getVersion(java.lang.String versionableId, VersionModel versionModel)
           
 DocumentModel CoreSession.getVersion(java.lang.String versionableId, VersionModel versionModel)
          Deprecated. use version ids directly
 DocumentModel AbstractSession.restoreToVersion(DocumentRef docRef, VersionModel version)
          Deprecated. 
 DocumentModel CoreSession.restoreToVersion(DocumentRef docRef, VersionModel version)
          Deprecated. use CoreSession.restoreToVersion(DocumentRef, DocumentRef) instead
 DocumentModel AbstractSession.restoreToVersion(DocumentRef docRef, VersionModel version, boolean skipSnapshotCreation)
          Deprecated. 
 DocumentModel CoreSession.restoreToVersion(DocumentRef docRef, VersionModel version, boolean skipSnapshotCreation)
          Deprecated. use CoreSession.restoreToVersion(DocumentRef, DocumentRef, boolean, boolean) instead
 

Uses of VersionModel in org.nuxeo.ecm.core.api.ejb
 

Methods in org.nuxeo.ecm.core.api.ejb that return types with arguments of type VersionModel
 java.util.List<VersionModel> DocumentManagerBean.getVersionsForDocument(DocumentRef docRef)
           
 

Methods in org.nuxeo.ecm.core.api.ejb with parameters of type VersionModel
 DocumentModel DocumentManagerBean.checkIn(DocumentRef docRef, VersionModel version)
          Deprecated. 
 DocumentModel DocumentManagerBean.createProxy(DocumentRef parentRef, DocumentRef docRef, VersionModel version, boolean overwriteExistingProxy)
           
 DocumentModel DocumentManagerBean.restoreToVersion(DocumentRef docRef, VersionModel version)
           
 

Uses of VersionModel in org.nuxeo.ecm.core.api.impl
 

Classes in org.nuxeo.ecm.core.api.impl that implement VersionModel
 class VersionModelImpl
           
 

Uses of VersionModel in org.nuxeo.ecm.core.api.repository.cache
 

Methods in org.nuxeo.ecm.core.api.repository.cache with parameters of type VersionModel
 DocumentModel CachingRepositoryInstanceHandler.createProxy(DocumentRef parentRef, DocumentRef docRef, VersionModel version, boolean overwriteExistingProxy)
           
 

Uses of VersionModel in org.nuxeo.ecm.core.model
 

Methods in org.nuxeo.ecm.core.model with parameters of type VersionModel
 Document Session.getVersion(java.lang.String versionableId, VersionModel versionModel)
          Gets a version of a document, given its versionable id and label.
 

Uses of VersionModel in org.nuxeo.ecm.core.storage.sql.coremodel
 

Methods in org.nuxeo.ecm.core.storage.sql.coremodel with parameters of type VersionModel
 Document SQLSession.getVersion(java.lang.String versionableId, VersionModel versionModel)
           
 

Uses of VersionModel in org.nuxeo.ecm.platform.ui.web.api
 

Methods in org.nuxeo.ecm.platform.ui.web.api with parameters of type VersionModel
 java.lang.String NavigationContext.navigateToDocument(DocumentModel docModel, VersionModel versionModel)
           
 

Uses of VersionModel in org.nuxeo.ecm.webapp.context
 

Methods in org.nuxeo.ecm.webapp.context with parameters of type VersionModel
 java.lang.String NavigationContextBean.navigateToDocument(DocumentModel docModel, VersionModel versionModel)
           
 

Uses of VersionModel in org.nuxeo.ecm.webapp.versioning
 

Methods in org.nuxeo.ecm.webapp.versioning that return types with arguments of type VersionModel
 java.util.Collection<VersionModel> DocumentVersioningBean.getCurrentItemVersioningHistory()
           
 java.util.Collection<VersionModel> DocumentVersioning.getCurrentItemVersioningHistory()
          Returns the available versioning history for the current document and state.
 java.util.Collection<VersionModel> DocumentVersioningBean.getItemVersioningHistory(DocumentModel document)
           
 java.util.Collection<VersionModel> DocumentVersioning.getItemVersioningHistory(DocumentModel document)
          Returns the available versioning options for the document parameter and state.
 java.util.List<VersionModel> VersionedActionsBean.getVersionList()
           
 java.util.List<VersionModel> VersionedActions.getVersionList()
          Factory accessor for currentDocument versionList.
 

Methods in org.nuxeo.ecm.webapp.versioning with parameters of type VersionModel
 boolean VersionedActionsBean.canRemoveArchivedVersion(VersionModel selectedVersion)
           
 boolean VersionedActions.canRemoveArchivedVersion(VersionModel selectedVersion)
          Check if a version can be removed.
 java.lang.String VersionedActionsBean.removeArchivedVersion(VersionModel selectedVersion)
           
 java.lang.String VersionedActions.removeArchivedVersion(VersionModel selectedVersion)
          Remove an archived version.
 java.lang.String VersionedActionsBean.restoreToVersion(VersionModel selectedVersion)
          Restores the document to the selected version.
 java.lang.String VersionedActions.restoreToVersion(VersionModel selectedVersion)
          Restored the document to the selected version.
 java.lang.String VersionedActionsBean.viewArchivedVersion(VersionModel selectedVersion)
           
 java.lang.String VersionedActions.viewArchivedVersion(VersionModel selectedVersion)
          View an older version of the document.
 


Nuxeo Enterprise Platform 5.4

Copyright © 2010 Nuxeo SAS. All Rights Reserved.