Nuxeo ECM Projects 5.4.3-SNAPSHOT

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

Packages that use CoreSession
org.nuxeo.ecm.automation   
org.nuxeo.ecm.automation.core.scripting   
org.nuxeo.ecm.automation.core.util   
org.nuxeo.ecm.automation.server.jaxrs   
org.nuxeo.ecm.automation.server.jaxrs.batch   
org.nuxeo.ecm.core.api The core API of the Nuxeo platform, including: CoreSession, DocumentModel, Blob
org.nuxeo.ecm.core.api.adapter   
org.nuxeo.ecm.core.api.impl   
org.nuxeo.ecm.core.api.local   
org.nuxeo.ecm.core.api.localconfiguration   
org.nuxeo.ecm.core.api.operation   
org.nuxeo.ecm.core.api.repository   
org.nuxeo.ecm.core.event Event Service API (see EventService). 
org.nuxeo.ecm.core.event.impl Event Service implementation. 
org.nuxeo.ecm.core.event.jms   
org.nuxeo.ecm.core.io.impl.plugins   
org.nuxeo.ecm.core.listener   
org.nuxeo.ecm.core.management.storage   
org.nuxeo.ecm.core.management.test   
org.nuxeo.ecm.core.repository   
org.nuxeo.ecm.core.repository.jcr.testing   
org.nuxeo.ecm.core.rest   
org.nuxeo.ecm.core.search.api.client.querymodel   
org.nuxeo.ecm.core.search.api.client.search.results.impl Client search results api implementation. 
org.nuxeo.ecm.core.storage.sql Implementation of a Nuxeo repository over an SQL database. 
org.nuxeo.ecm.core.test   
org.nuxeo.ecm.core.test.annotations   
org.nuxeo.ecm.core.trash   
org.nuxeo.ecm.core.versioning   
org.nuxeo.ecm.platform.actions   
org.nuxeo.ecm.platform.api DEPRECATED
org.nuxeo.ecm.platform.api.ws.session   
org.nuxeo.ecm.platform.api.ws.session.impl   
org.nuxeo.ecm.platform.audit.api.comment   
org.nuxeo.ecm.platform.comment.web   
org.nuxeo.ecm.platform.comment.workflow.services   
org.nuxeo.ecm.platform.content.template.listener   
org.nuxeo.ecm.platform.filemanager.api   
org.nuxeo.ecm.platform.filemanager.service   
org.nuxeo.ecm.platform.filemanager.service.extension   
org.nuxeo.ecm.platform.filemanager.utils   
org.nuxeo.ecm.platform.jbpm   
org.nuxeo.ecm.platform.jbpm.core.helper   
org.nuxeo.ecm.platform.jbpm.core.service   
org.nuxeo.ecm.platform.localconfiguration.simple   
org.nuxeo.ecm.platform.mail.utils   
org.nuxeo.ecm.platform.picture.extension   
org.nuxeo.ecm.platform.publisher.api   
org.nuxeo.ecm.platform.publisher.helper   
org.nuxeo.ecm.platform.publisher.impl.core   
org.nuxeo.ecm.platform.publisher.impl.localfs   
org.nuxeo.ecm.platform.publisher.impl.service   
org.nuxeo.ecm.platform.publisher.jbpm   
org.nuxeo.ecm.platform.publisher.remoting.client   
org.nuxeo.ecm.platform.publisher.remoting.marshaling   
org.nuxeo.ecm.platform.publisher.remoting.marshaling.interfaces   
org.nuxeo.ecm.platform.publisher.remoting.marshaling.io   
org.nuxeo.ecm.platform.publisher.synchonize.server   
org.nuxeo.ecm.platform.publisher.web   
org.nuxeo.ecm.platform.rendering.fm.adapters   
org.nuxeo.ecm.platform.tag   
org.nuxeo.ecm.platform.ui.web.api   
org.nuxeo.ecm.platform.userpreferences   
org.nuxeo.ecm.platform.userworkspace.api   
org.nuxeo.ecm.platform.userworkspace.core.service   
org.nuxeo.ecm.platform.ws.session   
org.nuxeo.ecm.webapp.bulkedit   
org.nuxeo.ecm.webapp.clipboard   
org.nuxeo.ecm.webapp.context   
org.nuxeo.ecm.webapp.delegate   
org.nuxeo.ecm.webapp.documentsLists   
org.nuxeo.ecm.webengine.jaxrs.session   
org.nuxeo.ecm.webengine.jaxrs.session.impl   
org.nuxeo.ecm.webengine.jaxrs.views   
org.nuxeo.ecm.webengine.model   
org.nuxeo.ecm.webengine.model.impl   
org.nuxeo.ecm.webengine.session   
org.nuxeo.ecm.webengine.ui.json   
org.nuxeo.ecm.webengine.ui.tree.document   
org.nuxeo.ecm.webengine.util   
org.nuxeo.webengine.blogs.utils   
org.nuxeo.webengine.sites   
org.nuxeo.webengine.sites.utils   
 

Uses of CoreSession in org.nuxeo.ecm.automation
 

Fields in org.nuxeo.ecm.automation declared as CoreSession
 CoreSession LoginStack.Entry.session
           
 

Methods in org.nuxeo.ecm.automation that return CoreSession
 CoreSession OperationContext.getCoreSession()
           
 CoreSession LoginStack.getSession()
          Get the current session
 

Methods in org.nuxeo.ecm.automation with parameters of type CoreSession
 void OperationContext.setCoreSession(CoreSession session)
           
 void LoginStack.setSession(CoreSession session)
           
 

Constructors in org.nuxeo.ecm.automation with parameters of type CoreSession
LoginStack.Entry(LoginContext lc, CoreSession session)
           
LoginStack(CoreSession session)
           
OperationContext(CoreSession session)
           
OperationContext(CoreSession session, Map<String,Object> vars)
           
 

Uses of CoreSession in org.nuxeo.ecm.automation.core.scripting
 

Methods in org.nuxeo.ecm.automation.core.scripting that return CoreSession
 CoreSession DocumentWrapper.getSession()
           
 

Constructors in org.nuxeo.ecm.automation.core.scripting with parameters of type CoreSession
DocumentWrapper(CoreSession session, DocumentModel doc)
           
 

Uses of CoreSession in org.nuxeo.ecm.automation.core.util
 

Methods in org.nuxeo.ecm.automation.core.util with parameters of type CoreSession
static DocumentModel DocumentHelper.saveDocument(CoreSession session, DocumentModel doc)
          Saves the document and clear context data to avoid incrementing version in next operations if not needed.
static void DocumentHelper.setProperties(CoreSession session, DocumentModel doc, Map<String,String> values)
          Sets the properties given as a map of xpath:value to the given document.
static void DocumentHelper.setProperty(CoreSession session, DocumentModel doc, String key, String value)
           
 

Uses of CoreSession in org.nuxeo.ecm.automation.server.jaxrs
 

Methods in org.nuxeo.ecm.automation.server.jaxrs that return CoreSession
 CoreSession ExecutableResource.getCoreSession()
           
 

Methods in org.nuxeo.ecm.automation.server.jaxrs with parameters of type CoreSession
 OperationContext ExecutionRequest.createContext(HttpServletRequest request, CoreSession session)
           
 

Uses of CoreSession in org.nuxeo.ecm.automation.server.jaxrs.batch
 

Methods in org.nuxeo.ecm.automation.server.jaxrs.batch that return CoreSession
 CoreSession BatchResource.getCoreSession(HttpServletRequest request)
           
 

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

Classes in org.nuxeo.ecm.core.api that implement CoreSession
 class AbstractSession
          Abstract implementation of the client interface.
 

Methods in org.nuxeo.ecm.core.api that return CoreSession
 CoreSession DocumentModel.getCoreSession()
          Gets the core session to which this document is tied.
 CoreSession CoreSessionFactory.getSession()
           
 CoreSession CoreInstance.getSession(String sid)
          Gets the client bound to the given session.
 CoreSession[] CoreInstance.getSessions()
           
 CoreSession CoreInstance.open(String repositoryName, Map<String,Serializable> context)
           
 CoreSession CoreInstance.unregisterSession(String sid)
           
static CoreSession TransactionalCoreSessionWrapper.wrap(CoreSession session)
           
 

Methods in org.nuxeo.ecm.core.api with parameters of type CoreSession
 void CoreInstance.close(CoreSession client)
           
 void CoreInstance.registerSession(String sid, CoreSession session)
           
static CoreSession TransactionalCoreSessionWrapper.wrap(CoreSession session)
           
 

Constructors in org.nuxeo.ecm.core.api with parameters of type CoreSession
DocumentTreeIterator(CoreSession session, DocumentModel root)
          Creates the iterator given the tree root.
DocumentTreeIterator(CoreSession session, DocumentModel root, boolean excludeRoot)
           
 

Uses of CoreSession in org.nuxeo.ecm.core.api.adapter
 

Methods in org.nuxeo.ecm.core.api.adapter with parameters of type CoreSession
abstract  T SessionAdapterFactory.getAdapter(CoreSession session)
           
static
<T> T
SessionAdapterFactory.getAdapter(CoreSession session, Class<T> itf)
           
 

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

Fields in org.nuxeo.ecm.core.api.impl with type parameters of type CoreSession
static ThreadLocal<HashMap<String,CoreSession>> DocumentModelImpl.reentrantCoreSession
           
 

Methods in org.nuxeo.ecm.core.api.impl that return CoreSession
 CoreSession DocumentModelImpl.getClient()
          Deprecated. use DocumentModelImpl.getCoreSession() instead.
 CoreSession SimpleDocumentModel.getCoreSession()
           
 CoreSession DocumentModelImpl.getCoreSession()
           
 

Constructors in org.nuxeo.ecm.core.api.impl with parameters of type CoreSession
DocumentModelIteratorImpl(CoreSession coreSession, int chunkSize, DocsQueryProviderDef def, String type, String perm, Filter filter)
          This constructor is to be called only from the server side from a CoreSession (AbstractSession).
 

Uses of CoreSession in org.nuxeo.ecm.core.api.local
 

Classes in org.nuxeo.ecm.core.api.local that implement CoreSession
 class LocalSession
          Local Session: a CoreSession not tied to an EJB container.
 

Methods in org.nuxeo.ecm.core.api.local that return CoreSession
static CoreSession LocalSession.createInstance()
           
 CoreSession LocalSessionFactory.getSession()
           
 

Uses of CoreSession in org.nuxeo.ecm.core.api.localconfiguration
 

Methods in org.nuxeo.ecm.core.api.localconfiguration with parameters of type CoreSession
 void LocalConfiguration.save(CoreSession session)
          Save this LocalConfiguration.
 void AbstractLocalConfiguration.save(CoreSession session)
           
 

Uses of CoreSession in org.nuxeo.ecm.core.api.operation
 

Methods in org.nuxeo.ecm.core.api.operation that return CoreSession
 CoreSession Operation.getSession()
           
 

Methods in org.nuxeo.ecm.core.api.operation with parameters of type CoreSession
 T Operation.run(CoreSession session, OperationHandler handler, ProgressMonitor monitor)
           
 

Constructors in org.nuxeo.ecm.core.api.operation with parameters of type CoreSession
DefaultOperationEvent(CoreSession session, String id, ModificationSet modifs)
           
DefaultOperationEvent(CoreSession session, String id, ModificationSet modifs, Serializable details)
           
 

Uses of CoreSession in org.nuxeo.ecm.core.api.repository
 

Subinterfaces of CoreSession in org.nuxeo.ecm.core.api.repository
 interface RepositoryInstance
           
 

Methods in org.nuxeo.ecm.core.api.repository that return CoreSession
 CoreSession RepositoryInstanceHandler.getSession()
           
 CoreSession RepositoryConnection.getSession()
           
 CoreSession RepositoryExceptionHandler.handleAuthenticationFailure(Repository repository, Throwable t)
          When a session open fails this method is invoked by passing the current repository instance and the exception that occured.
 CoreSession Repository.open()
           
 CoreSession Repository.open(Map<String,Serializable> context)
           
 

Methods in org.nuxeo.ecm.core.api.repository with parameters of type CoreSession
static void Repository.close(CoreSession session)
           
 

Uses of CoreSession in org.nuxeo.ecm.core.event
 

Methods in org.nuxeo.ecm.core.event that return CoreSession
 CoreSession EventContext.getCoreSession()
          Gets the current core session if any.
 

Methods in org.nuxeo.ecm.core.event with parameters of type CoreSession
 void EventContext.setCoreSession(CoreSession session)
          Sets the core session.
 

Uses of CoreSession in org.nuxeo.ecm.core.event.impl
 

Methods in org.nuxeo.ecm.core.event.impl that return CoreSession
 CoreSession ShallowDocumentModel.getCoreSession()
           
 CoreSession EventContextImpl.getCoreSession()
           
 

Methods in org.nuxeo.ecm.core.event.impl with parameters of type CoreSession
 void EventContextImpl.setCoreSession(CoreSession session)
           
 

Constructors in org.nuxeo.ecm.core.event.impl with parameters of type CoreSession
DocumentEventContext(CoreSession session, Principal principal, DocumentModel source)
           
DocumentEventContext(CoreSession session, Principal principal, DocumentModel source, DocumentRef destDoc)
           
EventContextImpl(CoreSession session, Principal principal)
           
EventContextImpl(CoreSession session, Principal principal, Object... args)
           
InlineEventContext(CoreSession session, Principal principal, Map<String,Serializable> properties)
           
UnboundEventContext(CoreSession session, Principal principal, Map<String,Serializable> properties)
           
 

Uses of CoreSession in org.nuxeo.ecm.core.event.jms
 

Methods in org.nuxeo.ecm.core.event.jms with parameters of type CoreSession
 EventBundle SerializableEventBundle.reconstructEventBundle(CoreSession session)
           
 

Uses of CoreSession in org.nuxeo.ecm.core.io.impl.plugins
 

Methods in org.nuxeo.ecm.core.io.impl.plugins with parameters of type CoreSession
static DocumentsListReader DocumentsListReader.createDocumentsListReader(CoreSession session, Collection<DocumentRef> docRefsList)
           
 

Constructors in org.nuxeo.ecm.core.io.impl.plugins with parameters of type CoreSession
DocumentChildrenReader(CoreSession session, DocumentModel root)
           
DocumentChildrenReader(CoreSession session, DocumentRef root)
           
DocumentModelInjector(CoreSession session, String parentPath)
           
DocumentModelInjector(CoreSession session, String parentPath, int saveInterval)
           
DocumentModelUpdater(CoreSession session, String parentPath)
           
DocumentModelUpdater(CoreSession session, String parentPath, int saveInterval)
           
DocumentModelWriter(CoreSession session, String parentPath)
           
DocumentModelWriter(CoreSession session, String parentPath, int saveInterval)
           
DocumentsListReader(CoreSession session, List<DocumentModel> docsList)
           
DocumentTreeReader(CoreSession session, DocumentModel root)
           
DocumentTreeReader(CoreSession session, DocumentModel root, boolean excludeRoot)
           
DocumentTreeReader(CoreSession session, DocumentRef root)
           
SingleDocumentReader(CoreSession session, DocumentModel root)
           
SingleDocumentReader(CoreSession session, DocumentRef root)
           
 

Uses of CoreSession in org.nuxeo.ecm.core.listener
 

Methods in org.nuxeo.ecm.core.listener with parameters of type CoreSession
static OperationEvent OperationEventFactory.createEvent(CoreSession session, CoreEvent coreEvent)
           
 

Uses of CoreSession in org.nuxeo.ecm.core.management.storage
 

Methods in org.nuxeo.ecm.core.management.storage with parameters of type CoreSession
 void DocumentStoreManager.doInitializeRepository(CoreSession session)
           
 void DocumentStoreHandler.onStorageInitialization(CoreSession session, DocumentRef rootletRef)
           
 

Constructors in org.nuxeo.ecm.core.management.storage with parameters of type CoreSession
DocumentStoreSessionRunner(CoreSession session)
           
 

Uses of CoreSession in org.nuxeo.ecm.core.management.test
 

Methods in org.nuxeo.ecm.core.management.test with parameters of type CoreSession
 void FakeDocumentStoreHandler.onStorageInitialization(CoreSession session, DocumentRef rootletRef)
           
 

Uses of CoreSession in org.nuxeo.ecm.core.repository
 

Methods in org.nuxeo.ecm.core.repository with parameters of type CoreSession
abstract  void RepositoryInitializationHandler.doInitializeRepository(CoreSession session)
           
 void RepositoryInitializationHandler.initializeRepository(CoreSession session)
          Must be implemented by custom initializers.
 

Uses of CoreSession in org.nuxeo.ecm.core.repository.jcr.testing
 

Methods in org.nuxeo.ecm.core.repository.jcr.testing that return CoreSession
 CoreSession RepositoryOSGITestCase.getCoreSession()
           
 

Uses of CoreSession in org.nuxeo.ecm.core.rest
 

Methods in org.nuxeo.ecm.core.rest that return CoreSession
 CoreSession DocumentObject.getCoreSession()
           
 

Uses of CoreSession in org.nuxeo.ecm.core.search.api.client.querymodel
 

Methods in org.nuxeo.ecm.core.search.api.client.querymodel with parameters of type CoreSession
 DocumentModelList QueryModel.getDocuments(CoreSession session)
          Deprecated.  
 DocumentModelList QueryModel.getDocuments(CoreSession session, Object[] params)
          Deprecated.  
 PagedDocumentsProvider QueryModel.getResultsProvider(CoreSession session, Object[] params)
          Deprecated.  
 PagedDocumentsProvider QueryModel.getResultsProvider(CoreSession session, Object[] params, SortInfo sortInfo)
          Deprecated.  
 

Uses of CoreSession in org.nuxeo.ecm.core.search.api.client.search.results.impl
 

Constructors in org.nuxeo.ecm.core.search.api.client.search.results.impl with parameters of type CoreSession
ResultSetImpl(String query, CoreSession session, int offset, int range, List<ResultItem> resultItems, int totalHits, int pageHits)
          Constructor used when a CoreSession is available.
 

Uses of CoreSession in org.nuxeo.ecm.core.storage.sql
 

Fields in org.nuxeo.ecm.core.storage.sql declared as CoreSession
 CoreSession SQLRepositoryTestCase.session
           
 

Methods in org.nuxeo.ecm.core.storage.sql that return CoreSession
 CoreSession SQLRepositoryTestCase.openSessionAs(NuxeoPrincipal principal)
           
 CoreSession SQLRepositoryTestCase.openSessionAs(String username)
           
 

Methods in org.nuxeo.ecm.core.storage.sql with parameters of type CoreSession
 void SQLRepositoryTestCase.closeSession(CoreSession session)
           
 

Uses of CoreSession in org.nuxeo.ecm.core.test
 

Methods in org.nuxeo.ecm.core.test that return CoreSession
 CoreSession TestRepositoryHandler.changeUser(CoreSession session, String newUser)
           
 CoreSession RepositorySettings.get()
           
 CoreSession RepositorySettings.getSession()
           
 CoreSession TestRepositoryHandler.openSession(Map<String,Serializable> ctx)
           
 CoreSession TestRepositoryHandler.openSessionAs(String userName)
           
 CoreSession RepositorySettings.openSessionAs(String userName)
           
 

Methods in org.nuxeo.ecm.core.test with parameters of type CoreSession
 CoreSession TestRepositoryHandler.changeUser(CoreSession session, String newUser)
           
 void NoopRepositoryInit.populate(CoreSession session)
           
 void DefaultRepositoryInit.populate(CoreSession session)
           
 void TestRepositoryHandler.releaseSession(CoreSession session)
           
 

Uses of CoreSession in org.nuxeo.ecm.core.test.annotations
 

Methods in org.nuxeo.ecm.core.test.annotations with parameters of type CoreSession
 void RepositoryInit.populate(CoreSession session)
          Creates the default objects in an empty repository.
 

Uses of CoreSession in org.nuxeo.ecm.core.trash
 

Methods in org.nuxeo.ecm.core.trash with parameters of type CoreSession
 void TrashServiceImpl.purgeDocuments(CoreSession session, List<DocumentRef> docRefs)
           
 void TrashService.purgeDocuments(CoreSession session, List<DocumentRef> docRefs)
          Purges (completely deletes) documents .
 

Uses of CoreSession in org.nuxeo.ecm.core.versioning
 

Methods in org.nuxeo.ecm.core.versioning with parameters of type CoreSession
 void VersionRemovalPolicy.removeVersions(Session session, Document doc, CoreSession coreSession)
          Removes the versions when a given working document is about to be removed.
 void NullVersionRemovalPolicy.removeVersions(Session session, Document doc, CoreSession coreSession)
           
 void DefaultVersionRemovalPolicy.removeVersions(Session session, Document doc, CoreSession coreSession)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.actions
 

Methods in org.nuxeo.ecm.platform.actions that return CoreSession
 CoreSession ActionContext.getDocumentManager()
           
 

Methods in org.nuxeo.ecm.platform.actions with parameters of type CoreSession
 void ActionContext.setDocumentManager(CoreSession docMgr)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.api
 

Methods in org.nuxeo.ecm.platform.api that return CoreSession
 CoreSession RepositoryConnector.connect(RepositoryDescriptor rd)
          Deprecated.  
 CoreSession DefaultRepositoryConnector.connect(RepositoryDescriptor rd)
          Deprecated.  
 CoreSession Server.openRepository(RepositoryDescriptor rd, Map<String,Serializable> ctx)
          Deprecated.  
 CoreSession Platform.openRepository(String repositoryName)
          Deprecated.  
 CoreSession Platform.openRepository(String repositoryName, Map<String,Serializable> ctx)
          Deprecated.  
 

Uses of CoreSession in org.nuxeo.ecm.platform.api.ws.session
 

Methods in org.nuxeo.ecm.platform.api.ws.session that return CoreSession
 CoreSession WSRemotingSession.getDocumentManager()
          Returns the document manager bound to the session.
 

Methods in org.nuxeo.ecm.platform.api.ws.session with parameters of type CoreSession
 WSRemotingSession WSRemotingSessionManager.createSession(String username, String password, String repository, UserManager um, CoreSession session)
          Creates a new remoting session.
 

Uses of CoreSession in org.nuxeo.ecm.platform.api.ws.session.impl
 

Methods in org.nuxeo.ecm.platform.api.ws.session.impl that return CoreSession
 CoreSession WSRemotingSessionImpl.getDocumentManager()
           
 

Constructors in org.nuxeo.ecm.platform.api.ws.session.impl with parameters of type CoreSession
WSRemotingSessionImpl(CoreSession session, UserManager um, String repository, String username, String password)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.audit.api.comment
 

Constructors in org.nuxeo.ecm.platform.audit.api.comment with parameters of type CoreSession
CommentProcessorHelper(CoreSession documentManager)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.comment.web
 

Constructors in org.nuxeo.ecm.platform.comment.web with parameters of type CoreSession
AbstractCommentManagerActionsBean.FollowTransitionUnrestricted(CoreSession session, DocumentRef docRef, String transition)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.comment.workflow.services
 

Methods in org.nuxeo.ecm.platform.comment.workflow.services with parameters of type CoreSession
 void CommentsModerationServiceImpl.approveComent(CoreSession session, DocumentModel doc, String commentId)
           
 void CommentsModerationService.approveComent(CoreSession session, DocumentModel document, String commentId)
          Approve the comment with the given commentId.
 ProcessInstance CommentsModerationServiceImpl.getModerationProcess(JbpmService jbpmService, CoreSession session, DocumentModel doc, String commentId)
           
 void CommentsModerationServiceImpl.publishComment(CoreSession session, DocumentModel comment)
           
 void CommentsModerationService.publishComment(CoreSession session, DocumentModel comment)
          Publish the given comment.
 void CommentsModerationServiceImpl.rejectComment(CoreSession session, DocumentModel doc, String commentId)
           
 void CommentsModerationService.rejectComment(CoreSession session, DocumentModel document, String commentId)
          Reject the comment with the given commentId.
 void CommentsModerationServiceImpl.startModeration(CoreSession session, DocumentModel doc, String commentID, ArrayList<String> moderators)
           
 void CommentsModerationService.startModeration(CoreSession session, DocumentModel document, String commentId, ArrayList<String> moderators)
          Starts the moderation process on given Comment posted on a documentModel.
 

Uses of CoreSession in org.nuxeo.ecm.platform.content.template.listener
 

Methods in org.nuxeo.ecm.platform.content.template.listener with parameters of type CoreSession
 void RepositoryInitializationListener.doInitializeRepository(CoreSession session)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.filemanager.api
 

Methods in org.nuxeo.ecm.platform.filemanager.api with parameters of type CoreSession
 DocumentModel FileManager.createDocumentFromBlob(CoreSession documentManager, Blob input, String path, boolean overwrite, String fullName)
          Returns an initialized doc based on a given blob.
 DocumentModel FileManager.createFolder(CoreSession documentManager, String fullname, String path)
          Creates a Folder.
 List<DocumentLocation> FileManager.findExistingDocumentWithFile(CoreSession documentManager, String path, String digest, Principal principal)
           
 DocumentModelList FileManager.getCreationContainers(CoreSession documentManager, String docType)
          Returns the list of document that are to be suggested to the principal of documentManager as a candidate container for a new document of type docType.
 DocumentModel FileManager.updateDocumentFromBlob(CoreSession documentManager, Blob input, String path, String fullName)
          Just applies the same actions as creation but does not changes the doc type.
 

Uses of CoreSession in org.nuxeo.ecm.platform.filemanager.service
 

Methods in org.nuxeo.ecm.platform.filemanager.service with parameters of type CoreSession
 DocumentModel FileManagerService.createDocumentFromBlob(CoreSession documentManager, Blob input, String path, boolean overwrite, String fullName)
           
 DocumentModel FileManagerService.createFolder(CoreSession documentManager, String fullname, String path)
           
 DocumentModel FileManagerService.defaultCreateFolder(CoreSession documentManager, String fullname, String path)
           
 DocumentModel FileManagerService.defaultCreateFolder(CoreSession documentManager, String fullname, String path, String containerTypeName, boolean checkAllowedSubTypes)
           
 List<DocumentLocation> FileManagerService.findExistingDocumentWithFile(CoreSession documentManager, String path, String digest, Principal principal)
           
 DocumentModelList FileManagerService.getCreationContainers(CoreSession documentManager, String docType)
           
 DocumentModel FileManagerService.updateDocumentFromBlob(CoreSession documentManager, Blob input, String path, String fullName)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.filemanager.service.extension
 

Methods in org.nuxeo.ecm.platform.filemanager.service.extension with parameters of type CoreSession
 DocumentModel NoteImporter.create(CoreSession documentManager, Blob content, String path, boolean overwrite, String fullname, TypeManager typeService)
           
 DocumentModel FileImporter.create(CoreSession documentManager, Blob content, String path, boolean overwrite, String filename, TypeManager typeService)
          Creates the document.
 DocumentModel ExportedZipImporter.create(CoreSession documentManager, Blob content, String path, boolean overwrite, String filename, TypeManager typeService)
           
 DocumentModel DefaultFileImporter.create(CoreSession documentManager, Blob input, String path, boolean overwrite, String fullname, TypeManager typeService)
          Creates a file in nearest container.
 DocumentModel CSVZipImporter.create(CoreSession documentManager, Blob content, String path, boolean overwrite, String filename, TypeManager typeService)
           
 DocumentModel AbstractFileImporter.create(CoreSession documentManager, File file, String path, boolean overwrite, String mimeType, TypeManager typService)
           
 DocumentModel FolderImporter.create(CoreSession documentManager, String fullname, String path, boolean overwrite, TypeManager typeManager)
           
 DocumentModel AbstractFolderImporter.create(CoreSession documentManager, String fullname, String path, boolean overwrite, TypeManager typeManager)
           
 DocumentModelList DefaultCreationContainerListProvider.getCreationContainerList(CoreSession documentManager, String docType)
           
 DocumentModelList CreationContainerListProvider.getCreationContainerList(CoreSession documentManager, String docType)
          Build the list of candidate containers for the given document type and session.
 

Uses of CoreSession in org.nuxeo.ecm.platform.filemanager.utils
 

Methods in org.nuxeo.ecm.platform.filemanager.utils with parameters of type CoreSession
static DocumentModel FileManagerUtils.getExistingDocByFileName(CoreSession documentManager, String path, String filename)
          Looks if an existing Document with the same filename exists.
static DocumentModel FileManagerUtils.getExistingDocByPropertyName(CoreSession documentManager, String path, String value, String propertyName)
          Looks if an existing Document has the same value for a given property.
static DocumentModel FileManagerUtils.getExistingDocByTitle(CoreSession documentManager, String path, String title)
          Looks if an existing Document with the same title exists.
 

Uses of CoreSession in org.nuxeo.ecm.platform.jbpm
 

Methods in org.nuxeo.ecm.platform.jbpm with parameters of type CoreSession
 void JbpmTaskService.acceptTask(CoreSession coreSession, NuxeoPrincipal principal, TaskInstance task, String comment)
          Ends the task using event name JbpmEventNames.WORKFLOW_TASK_COMPLETED and marking the task as validated.
 void JbpmTaskService.createTask(CoreSession coreSession, NuxeoPrincipal principal, DocumentModel document, String taskName, List<String> prefixedActorIds, boolean createOneTaskPerActor, String directive, String comment, Date dueDate, Map<String,Serializable> taskVariables)
          Creates a task and starts it.
 TaskList JbpmTaskListService.createTaskList(CoreSession session, String listName)
          Creates a new task list.
 void JbpmTaskListService.deleteTaskList(CoreSession session, String listUUId)
          Delete a list of participant.
 void JbpmTaskService.endTask(CoreSession coreSession, NuxeoPrincipal principal, TaskInstance task, String comment, String eventName, boolean isValidated)
          Ends the task
 TaskList JbpmTaskListService.getTaskList(CoreSession session, String listUUId)
          Retrieves a task list from it name.
 List<TaskList> JbpmTaskListService.getTaskLists(CoreSession documentManager)
          Retrieve all the task lists of the current user
 void JbpmService.notifyEventListeners(String name, String comment, String[] recipients, CoreSession session, NuxeoPrincipal principal, DocumentModel doc)
          Notify the event producer on the machine the jbpm service is.
 void JbpmTaskService.rejectTask(CoreSession coreSession, NuxeoPrincipal principal, TaskInstance task, String comment)
          Ends the task using event name JbpmEventNames.WORKFLOW_TASK_REJECTED and marking the task as not validated.
 void JbpmTaskListService.saveTaskList(CoreSession session, TaskList list)
          Saves the list.
 

Uses of CoreSession in org.nuxeo.ecm.platform.jbpm.core.helper
 

Methods in org.nuxeo.ecm.platform.jbpm.core.helper with parameters of type CoreSession
 void PublicationHelper.publishDocument(CoreSession session, DocumentModel docToPublish, DocumentModel sectionToPublish)
           
 

Constructors in org.nuxeo.ecm.platform.jbpm.core.helper with parameters of type CoreSession
AddRightUnrestricted(CoreSession session, DocumentRef docRef, ACP acp)
           
RemoveRightsUnrestricted(CoreSession session, DocumentRef docRef, String aclName)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.jbpm.core.service
 

Methods in org.nuxeo.ecm.platform.jbpm.core.service with parameters of type CoreSession
 void JbpmTaskServiceImpl.acceptTask(CoreSession coreSession, NuxeoPrincipal principal, TaskInstance task, String comment)
           
 void JbpmTaskServiceImpl.createTask(CoreSession coreSession, NuxeoPrincipal principal, DocumentModel document, String taskName, List<String> prefixedActorIds, boolean createOneTaskPerActor, String directive, String comment, Date dueDate, Map<String,Serializable> taskVariables)
           
 TaskList JbpmTaskListServiceImpl.createTaskList(CoreSession session, String listName)
           
 void JbpmTaskListServiceImpl.deleteTaskList(CoreSession session, String listUUId)
           
 void JbpmTaskServiceImpl.endTask(CoreSession coreSession, NuxeoPrincipal principal, TaskInstance task, String comment, String eventName, boolean isValidated)
           
 TaskList JbpmTaskListServiceImpl.getTaskList(CoreSession session, String listUUId)
           
 List<TaskList> JbpmTaskListServiceImpl.getTaskLists(CoreSession session)
           
 void JbpmServiceImpl.notifyEventListeners(String name, String comment, String[] recipients, CoreSession session, NuxeoPrincipal principal, DocumentModel doc)
           
 void JbpmTaskServiceImpl.rejectTask(CoreSession coreSession, NuxeoPrincipal principal, TaskInstance task, String comment)
           
 void JbpmTaskListServiceImpl.saveTaskList(CoreSession session, TaskList list)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.localconfiguration.simple
 

Methods in org.nuxeo.ecm.platform.localconfiguration.simple with parameters of type CoreSession
 void SimpleConfigurationAdapter.save(CoreSession session)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.mail.utils
 

Methods in org.nuxeo.ecm.platform.mail.utils with parameters of type CoreSession
static void MailCoreHelper.checkMail(DocumentModel currentMailFolder, CoreSession coreSession)
          Creates MailMessage documents for every unread mail found in the INBOX.
 

Uses of CoreSession in org.nuxeo.ecm.platform.picture.extension
 

Methods in org.nuxeo.ecm.platform.picture.extension with parameters of type CoreSession
 DocumentModel ImagePlugin.create(CoreSession documentManager, Blob content, String path, boolean overwrite, String fullname, TypeManager typeService)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.publisher.api
 

Methods in org.nuxeo.ecm.platform.publisher.api with parameters of type CoreSession
 PublicationTree PublisherService.getPublicationTree(String treeName, CoreSession coreSession, Map<String,String> params)
           
 PublicationTree PublisherService.getPublicationTree(String treeName, CoreSession coreSession, Map<String,String> params, DocumentModel currentDocument)
           
 PublicationTree PublisherService.getPublicationTreeFor(DocumentModel doc, CoreSession coreSession)
           
 void PublishedDocumentFactory.init(CoreSession coreSession, Map<String,String> parameters)
           
 void AbstractBasePublishedDocumentFactory.init(CoreSession coreSession, Map<String,String> parameters)
           
 void PublishedDocumentFactory.init(CoreSession coreSession, ValidatorsRule validatorsRule, Map<String,String> parameters)
           
 void AbstractBasePublishedDocumentFactory.init(CoreSession coreSession, ValidatorsRule validatorsRule, Map<String,String> parameters)
           
 void PublicationTree.initTree(String sid, CoreSession coreSession, Map<String,String> parameters, PublishedDocumentFactory factory, String configName, String title)
           
 void AbstractBasePublicationTree.initTree(String sid, CoreSession coreSession, Map<String,String> parameters, PublishedDocumentFactory factory, String configName, String title)
           
 PublicationNode PublisherService.wrapToPublicationNode(DocumentModel documentModel, CoreSession coreSession)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.publisher.helper
 

Methods in org.nuxeo.ecm.platform.publisher.helper with parameters of type CoreSession
static PublicationTree PublicationRelationHelper.getPublicationTreeUsedForPublishing(DocumentModel documentModel, CoreSession coreSession)
           
static RootSectionsFinder RootSectionsFinderHelper.getRootSectionsFinder(CoreSession coreSession)
           
 

Constructors in org.nuxeo.ecm.platform.publisher.helper with parameters of type CoreSession
RootSectionsFinder(CoreSession userSession, Set<String> sectionRootTypes, Set<String> sectionTypes)
           
RootSectionsManager(CoreSession coreSession)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.publisher.impl.core
 

Methods in org.nuxeo.ecm.platform.publisher.impl.core with parameters of type CoreSession
 void SectionPublicationTree.initTree(String sid, CoreSession coreSession, Map<String,String> parameters, PublishedDocumentFactory factory, String configName, String title)
           
 void RootSectionsPublicationTree.initTree(String sid, CoreSession coreSession, Map<String,String> parameters, PublishedDocumentFactory factory, String configName, String title)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.publisher.impl.localfs
 

Methods in org.nuxeo.ecm.platform.publisher.impl.localfs with parameters of type CoreSession
 void LocalFSPublicationTree.initTree(String sid, CoreSession coreSession, Map<String,String> parameters, PublishedDocumentFactory factory, String configName, String title)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.publisher.impl.service
 

Methods in org.nuxeo.ecm.platform.publisher.impl.service with parameters of type CoreSession
 PublicationTree PublisherServiceImpl.getPublicationTree(String treeName, CoreSession coreSession, Map<String,String> params)
           
 PublicationTree PublisherServiceImpl.getPublicationTree(String treeName, CoreSession coreSession, Map<String,String> params, DocumentModel currentDocument)
           
 PublicationTree PublisherServiceImpl.getPublicationTreeFor(DocumentModel doc, CoreSession coreSession)
           
 void ProxyTree.initTree(String sid, CoreSession coreSession, Map<String,String> parameters, PublishedDocumentFactory factory, String configName)
           
 void ProxyTree.initTree(String sid, CoreSession coreSession, Map<String,String> parameters, PublishedDocumentFactory factory, String configName, String title)
           
 PublicationNode PublisherServiceImpl.wrapToPublicationNode(DocumentModel documentModel, CoreSession coreSession)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.publisher.jbpm
 

Constructors in org.nuxeo.ecm.platform.publisher.jbpm with parameters of type CoreSession
ChangePermissionUnrestricted(CoreSession session, DocumentModel document, String[] validators, NuxeoPrincipal principal, String aclName, ACL acl)
           
DeleteDocumentUnrestricted(CoreSession session, DocumentModel document)
           
PublishUnrestricted(CoreSession session, DocumentModel docToPublish, DocumentModel sectionToPublishTo)
           
PublishUnrestricted(CoreSession session, DocumentModel docToPublish, DocumentModel sectionToPublishTo, boolean overwriteProxy)
           
RemoveACLUnrestricted(CoreSession session, DocumentModel document, String aclName)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.publisher.remoting.client
 

Methods in org.nuxeo.ecm.platform.publisher.remoting.client with parameters of type CoreSession
 void ClientRemotePublicationTree.initTree(String sid, CoreSession coreSession, Map<String,String> parameters, PublishedDocumentFactory factory, String configName, String title)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.publisher.remoting.marshaling
 

Methods in org.nuxeo.ecm.platform.publisher.remoting.marshaling with parameters of type CoreSession
 void DefaultMarshaler.setAssociatedCoreSession(CoreSession session)
           
 DocumentModel CoreIODocumentModelMarshaler.unMarshalDocument(String data, CoreSession coreSession)
           
 

Constructors in org.nuxeo.ecm.platform.publisher.remoting.marshaling with parameters of type CoreSession
DefaultMarshaler(CoreSession session)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.publisher.remoting.marshaling.interfaces
 

Methods in org.nuxeo.ecm.platform.publisher.remoting.marshaling.interfaces with parameters of type CoreSession
 void RemotePublisherMarshaler.setAssociatedCoreSession(CoreSession session)
           
 DocumentModel DocumentModelMarshaler.unMarshalDocument(String data, CoreSession coreSession)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.publisher.remoting.marshaling.io
 

Constructors in org.nuxeo.ecm.platform.publisher.remoting.marshaling.io with parameters of type CoreSession
SingleDocumentReaderWithInLineBlobs(CoreSession session, DocumentModel doc)
           
SingleShadowDocumentWriter(CoreSession session, String parentPath)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.publisher.synchonize.server
 

Methods in org.nuxeo.ecm.platform.publisher.synchonize.server with parameters of type CoreSession
 void AbstractSynchonizablePublicationTree.initTree(String sid, CoreSession coreSession, Map<String,String> parameters, PublishedDocumentFactory factory, String configName)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.publisher.web
 

Methods in org.nuxeo.ecm.platform.publisher.web with parameters of type CoreSession
static void PublishActionsBean.notifyEvent(CoreSession session, String eventId, Map<String,Serializable> properties, String comment, String category, DocumentModel dm)
           
 

Constructors in org.nuxeo.ecm.platform.publisher.web with parameters of type CoreSession
PublishActionsBean.ApproverWithoutRestriction(PublishedDocument doc, String comment, CoreSession session)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.rendering.fm.adapters
 

Methods in org.nuxeo.ecm.platform.rendering.fm.adapters that return CoreSession
 CoreSession DocumentTemplate.getSession()
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.tag
 

Methods in org.nuxeo.ecm.platform.tag with parameters of type CoreSession
 List<Tag> TagServiceImpl.getDocumentTags(CoreSession session, String docId, String username)
           
 List<Tag> TagService.getDocumentTags(CoreSession session, String docId, String username)
          Gets the tags applied to a document by a given user, or by all users.
 List<Tag> TagServiceImpl.getSuggestions(CoreSession session, String label, String username)
           
 List<Tag> TagService.getSuggestions(CoreSession session, String label, String username)
          Gets suggestions for a given tag label prefix.
 List<Tag> TagServiceImpl.getTagCloud(CoreSession session, String docId, String username, Boolean normalize)
           
 List<Tag> TagService.getTagCloud(CoreSession session, String docId, String username, Boolean normalize)
          Gets the tag cloud for a set of documents (tags with weight corresponding to their popularity).
 List<String> TagServiceImpl.getTagDocumentIds(CoreSession session, String label, String username)
           
 List<String> TagService.getTagDocumentIds(CoreSession session, String label, String username)
          Gets the documents to which a tag is applied.
 void TagServiceImpl.tag(CoreSession session, String docId, String label, String username)
           
 void TagService.tag(CoreSession session, String docId, String label, String username)
          Tags a document with a given tag.
 void TagServiceImpl.untag(CoreSession session, String docId, String label, String username)
           
 void TagService.untag(CoreSession session, String docId, String label, String username)
          Untags a document of the given tag
 

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

Methods in org.nuxeo.ecm.platform.ui.web.api that return CoreSession
 CoreSession NavigationContext.getOrCreateDocumentManager()
          Returns the current documentManager if any or create a new session to the currently selected repository location.
 

Uses of CoreSession in org.nuxeo.ecm.platform.userpreferences
 

Methods in org.nuxeo.ecm.platform.userpreferences with parameters of type CoreSession
 SimpleUserPreferences UserPreferencesServiceImpl.getSimpleUserPreferences(CoreSession session)
           
 SimpleUserPreferences UserPreferencesService.getSimpleUserPreferences(CoreSession session)
           
<T extends UserPreferences>
T
UserPreferencesServiceImpl.getUserPreferences(CoreSession session, Class<T> userPrefClass, String userPrefFacet)
           
<T extends UserPreferences>
T
UserPreferencesService.getUserPreferences(CoreSession session, Class<T> configurationClass, String configurationFacet)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.userworkspace.api
 

Methods in org.nuxeo.ecm.platform.userworkspace.api with parameters of type CoreSession
 DocumentModel UserWorkspaceService.getCurrentUserPersonalWorkspace(CoreSession userCoreSession, DocumentModel context)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.userworkspace.core.service
 

Methods in org.nuxeo.ecm.platform.userworkspace.core.service with parameters of type CoreSession
 DocumentModel DefaultUserWorkspaceServiceImpl.getCurrentUserPersonalWorkspace(CoreSession userCoreSession, DocumentModel context)
           
 

Uses of CoreSession in org.nuxeo.ecm.platform.ws.session
 

Methods in org.nuxeo.ecm.platform.ws.session with parameters of type CoreSession
 WSRemotingSession WSRemotingSessionManagerImpl.createSession(String username, String password, String repository, UserManager um, CoreSession session)
           
 

Uses of CoreSession in org.nuxeo.ecm.webapp.bulkedit
 

Methods in org.nuxeo.ecm.webapp.bulkedit with parameters of type CoreSession
static void BulkEditHelper.copyMetadata(CoreSession session, DocumentModel sourceDoc, List<DocumentModel> targetDocs)
          Copy all the marked properties (stored in the ContextData of sourceDoc) from sourceDoc to all the targetDocs.
 

Uses of CoreSession in org.nuxeo.ecm.webapp.clipboard
 

Methods in org.nuxeo.ecm.webapp.clipboard with parameters of type CoreSession
 File DocumentListZipExporter.exportWorklistAsZip(List<DocumentModel> documents, CoreSession documentManager, boolean exportAllBlobs)
           
 

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

Methods in org.nuxeo.ecm.webapp.context that return CoreSession
 CoreSession NavigationContextBean.getOrCreateDocumentManager()
          Returns the current documentManager if any or create a new session to the current location.
 

Uses of CoreSession in org.nuxeo.ecm.webapp.delegate
 

Methods in org.nuxeo.ecm.webapp.delegate that return CoreSession
 CoreSession DocumentManagerBusinessDelegate.getDocumentManager()
           
 CoreSession DocumentManagerBusinessDelegate.getDocumentManager(RepositoryLocation serverLocation)
           
 

Uses of CoreSession in org.nuxeo.ecm.webapp.documentsLists
 

Methods in org.nuxeo.ecm.webapp.documentsLists with parameters of type CoreSession
 void BaseDocumentsListsManager.createWorkingList(String listName, DocumentsListDescriptor descriptor, CoreSession session, String userName)
           
 List<DocumentModel> DocumentsListsPersistenceManager.loadPersistentDocumentsLists(CoreSession currentSession, String userName, String listName)
           
 

Uses of CoreSession in org.nuxeo.ecm.webengine.jaxrs.session
 

Methods in org.nuxeo.ecm.webengine.jaxrs.session that return CoreSession
 CoreSession SessionRef.get()
           
static CoreSession SessionFactory.getSession()
           
static CoreSession SessionFactory.getSession(HttpServletRequest request)
           
static CoreSession SessionFactory.getSession(HttpServletRequest request, String repositoryName)
           
 CoreSession CoreSessionProvider.getSession(HttpServletRequest request, String repoName)
           
static CoreSession SessionFactory.getSession(String repositoryName)
           
 

Uses of CoreSession in org.nuxeo.ecm.webengine.jaxrs.session.impl
 

Methods in org.nuxeo.ecm.webengine.jaxrs.session.impl that return CoreSession
 CoreSession PerSessionCoreProvider.Ref.get()
           
 CoreSession PerRequestCoreProvider.Ref.get()
           
 

Constructors in org.nuxeo.ecm.webengine.jaxrs.session.impl with parameters of type CoreSession
PerRequestCoreProvider.Ref(CoreSession session)
           
PerSessionCoreProvider.Ref(CoreSession session)
           
 

Uses of CoreSession in org.nuxeo.ecm.webengine.jaxrs.views
 

Methods in org.nuxeo.ecm.webengine.jaxrs.views that return CoreSession
 CoreSession ResourceContext.getSession()
           
 CoreSession BundleResource.getSession()
           
 

Uses of CoreSession in org.nuxeo.ecm.webengine.model
 

Methods in org.nuxeo.ecm.webengine.model that return CoreSession
 CoreSession WebContext.getCoreSession()
          Gets the Core Session (or Repository Session) corresponding to that request.
 

Uses of CoreSession in org.nuxeo.ecm.webengine.model.impl
 

Methods in org.nuxeo.ecm.webengine.model.impl that return CoreSession
 CoreSession AbstractWebContext.getCoreSession()
           
 

Uses of CoreSession in org.nuxeo.ecm.webengine.session
 

Methods in org.nuxeo.ecm.webengine.session that return CoreSession
 CoreSession UserSession.getCoreSession()
          Deprecated. use SessionFactory.getSession(HttpServletRequest)
 CoreSession UserSession.getCoreSession(String repoName)
          Deprecated. use SessionFactory.getSession(HttpServletRequest, String)
 

Uses of CoreSession in org.nuxeo.ecm.webengine.ui.json
 

Constructors in org.nuxeo.ecm.webengine.ui.json with parameters of type CoreSession
DocumentTreeBuilder(CoreSession session)
           
 

Uses of CoreSession in org.nuxeo.ecm.webengine.ui.tree.document
 

Methods in org.nuxeo.ecm.webengine.ui.tree.document that return CoreSession
 CoreSession DocumentContentProvider.getSession()
           
 

Methods in org.nuxeo.ecm.webengine.ui.tree.document with parameters of type CoreSession
 void DocumentContentProvider.setSession(CoreSession session)
           
 

Constructors in org.nuxeo.ecm.webengine.ui.tree.document with parameters of type CoreSession
DocumentContentProvider(CoreSession session)
           
 

Uses of CoreSession in org.nuxeo.ecm.webengine.util
 

Methods in org.nuxeo.ecm.webengine.util with parameters of type CoreSession
static void ACLUtils.removePermission(CoreSession session, DocumentRef docRef, String username, String permission)
           
 

Uses of CoreSession in org.nuxeo.webengine.blogs.utils
 

Methods in org.nuxeo.webengine.blogs.utils with parameters of type CoreSession
static DocumentModelList BlogQueriesCollection.getAllBlogPosts(CoreSession session, String parent)
          Queries all blog posts within a blog site.
 

Uses of CoreSession in org.nuxeo.webengine.sites
 

Constructors in org.nuxeo.webengine.sites with parameters of type CoreSession
SiteContentProvider(CoreSession session)
           
 

Uses of CoreSession in org.nuxeo.webengine.sites.utils
 

Methods in org.nuxeo.webengine.sites.utils with parameters of type CoreSession
static boolean SiteQueriesCollection.checkUnrestrictedSiteExistenceByUrlAndDocType(CoreSession session, String url, String documentType)
          Queries sites unrestricted by URL and document type.
static DocumentModel SiteUtils.createDocument(HttpServletRequest request, CoreSession session, String parentPath, String documentType)
          Creates a document type that is received as parameter, as document model.
static DocumentModel SiteUtils.getFirstWebSiteParent(CoreSession session, DocumentModel doc)
          Gets the first mini-site parent.
static String SiteUtils.getModerationType(CoreSession session, DocumentModel doc)
           
static ArrayList<String> SiteUtils.getModerators(CoreSession session, DocumentModel doc)
           
static int SiteUtils.getNumberCommentsForPage(CoreSession session, DocumentModel page)
          Gets the number of comments added on a page (published actually, if the moderation is on).
static ArrayList<String> SiteUtils.getUsersWithPermission(CoreSession session, DocumentModel doc, Set<String> permissions)
           
static boolean SiteUtils.isCurrentModerated(CoreSession session, DocumentModel doc)
           
static boolean SiteUtils.isModeratedByCurrentUser(CoreSession session, DocumentModel doc)
           
static DocumentModelList SiteQueriesCollection.queryAllSites(CoreSession session, String documentType)
          Queries all sites of the given document type.
static DocumentModelList SiteQueriesCollection.queryLastComments(CoreSession session, String parent, int numberLimit, boolean isModerated)
          Queries the added comments within a limit.
static DocumentModelList SiteQueriesCollection.queryLastModifiedPages(CoreSession session, String parent, String documentType, int numberLimit)
          Queries the modified pages within a limit.
static DocumentModelList SiteQueriesCollection.querySearchPages(CoreSession session, String query, String parent, String documentType, String dateAfter, String dateBefore)
          Queries the pages based on a search string.
static DocumentModelList SiteQueriesCollection.querySitesByUrlAndDocType(CoreSession session, String url, String documentType)
          Queries sites by URL and document type.
 


Nuxeo ECM Projects 5.4.3-SNAPSHOT

Copyright © 2011 Nuxeo SAS. All Rights Reserved.