Nuxeo Enterprise Platform 5.4

Uses of Interface
org.nuxeo.ecm.platform.publisher.api.PublicationNode

Packages that use PublicationNode
org.nuxeo.ecm.platform.publisher.api   
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.basic   
org.nuxeo.ecm.platform.publisher.remoting.marshaling.interfaces   
org.nuxeo.ecm.platform.publisher.remoting.restHandler   
org.nuxeo.ecm.platform.publisher.remoting.restProxies   
org.nuxeo.ecm.platform.publisher.remoting.server   
org.nuxeo.ecm.platform.publisher.synchonize.client   
org.nuxeo.ecm.platform.publisher.synchonize.server   
org.nuxeo.ecm.platform.publisher.web   
 

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

Subinterfaces of PublicationNode in org.nuxeo.ecm.platform.publisher.api
 interface PublicationTree
          Interface for the publication tree.
 

Classes in org.nuxeo.ecm.platform.publisher.api that implement PublicationNode
 class AbstractBasePublicationTree
           
 class AbstractPublicationNode
           
 

Methods in org.nuxeo.ecm.platform.publisher.api that return PublicationNode
 PublicationNode PublicationTree.getNodeByPath(java.lang.String path)
           
 PublicationNode RemotePublicationTreeManager.getNodeByPath(java.lang.String sid, java.lang.String path)
           
 PublicationNode PublicationNode.getParent()
           
 PublicationNode AbstractBasePublicationTree.getParent()
           
 PublicationNode RemotePublicationTreeManager.getParent(PublicationNode node)
           
 PublicationNode PublicationTree.wrapToPublicationNode(DocumentModel documentModel)
          Returns a PublicationNode for the current tree built on the given documentModel.
 PublicationNode AbstractBasePublicationTree.wrapToPublicationNode(DocumentModel documentModel)
           
 PublicationNode PublisherService.wrapToPublicationNode(DocumentModel documentModel, CoreSession coreSession)
           
 PublicationNode RemotePublicationTreeManager.wrapToPublicationNode(java.lang.String sid, DocumentModel documentModel)
          Returns a PublicationNode for the current tree built on the given documentModel.
 

Methods in org.nuxeo.ecm.platform.publisher.api that return types with arguments of type PublicationNode
 java.util.List<PublicationNode> PublicationNode.getChildrenNodes()
           
 java.util.List<PublicationNode> AbstractBasePublicationTree.getChildrenNodes()
           
 java.util.List<PublicationNode> RemotePublicationTreeManager.getChildrenNodes(PublicationNode node)
           
 

Methods in org.nuxeo.ecm.platform.publisher.api with parameters of type PublicationNode
 boolean PublicationTree.canPublishTo(PublicationNode publicationNode)
          Returns true if the current user can publish to the specified publicationNode, false otherwise.
 boolean AbstractBasePublicationTree.canPublishTo(PublicationNode publicationNode)
           
 boolean RemotePublicationTreeManager.canPublishTo(java.lang.String sid, PublicationNode publicationNode)
          Returns true if the current user can publish to the specified publicationNode, false otherwise.
 java.util.List<PublishedDocument> RemotePublicationTreeManager.getChildrenDocuments(PublicationNode node)
           
 java.util.List<PublicationNode> RemotePublicationTreeManager.getChildrenNodes(PublicationNode node)
           
 PublicationNode RemotePublicationTreeManager.getParent(PublicationNode node)
           
 java.util.List<PublishedDocument> RemotePublicationTreeManager.getPublishedDocumentInNode(PublicationNode node)
           
 java.util.List<PublishedDocument> PublicationTree.getPublishedDocumentInNode(PublicationNode node)
           
 java.util.List<PublishedDocument> AbstractBasePublicationTree.getPublishedDocumentInNode(PublicationNode node)
           
 PublishedDocument RemotePublicationTreeManager.publish(DocumentModel doc, PublicationNode targetNode)
           
 PublishedDocument PublisherService.publish(DocumentModel doc, PublicationNode targetNode)
           
 PublishedDocument PublicationTree.publish(DocumentModel doc, PublicationNode targetNode)
           
 PublishedDocument AbstractBasePublicationTree.publish(DocumentModel doc, PublicationNode targetNode)
           
 PublishedDocument RemotePublicationTreeManager.publish(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 PublishedDocument PublisherService.publish(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 PublishedDocument PublicationTree.publish(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 PublishedDocument AbstractBasePublicationTree.publish(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 PublishedDocument PublishedDocumentFactory.publishDocument(DocumentModel doc, PublicationNode targetNode)
           
 PublishedDocument AbstractBasePublishedDocumentFactory.publishDocument(DocumentModel doc, PublicationNode targetNode)
           
 PublishedDocument PublishedDocumentFactory.publishDocument(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 void RemotePublicationTreeManager.unpublish(DocumentModel doc, PublicationNode targetNode)
           
 void PublisherService.unpublish(DocumentModel doc, PublicationNode targetNode)
           
 void PublicationTree.unpublish(DocumentModel doc, PublicationNode targetNode)
           
 

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

Classes in org.nuxeo.ecm.platform.publisher.impl.core that implement PublicationNode
 class CoreFolderPublicationNode
          Implementation of the PublicationNode for Simple Core Folders.
 class RootSectionsPublicationTree
           
 class SectionPublicationTree
          Simple implementation of a PublicationTree using the Core Sections.
 class VirtualCoreFolderPublicationNode
           
 

Methods in org.nuxeo.ecm.platform.publisher.impl.core that return PublicationNode
 PublicationNode SectionPublicationTree.getNodeByPath(java.lang.String path)
           
 PublicationNode RootSectionsPublicationTree.getNodeByPath(java.lang.String path)
           
 PublicationNode VirtualCoreFolderPublicationNode.getParent()
           
 PublicationNode CoreFolderPublicationNode.getParent()
           
 PublicationNode SectionPublicationTree.wrapToPublicationNode(DocumentModel documentModel)
           
 

Methods in org.nuxeo.ecm.platform.publisher.impl.core that return types with arguments of type PublicationNode
 java.util.List<PublicationNode> VirtualCoreFolderPublicationNode.getChildrenNodes()
           
 java.util.List<PublicationNode> RootSectionsPublicationTree.getChildrenNodes()
           
 java.util.List<PublicationNode> CoreFolderPublicationNode.getChildrenNodes()
           
 

Methods in org.nuxeo.ecm.platform.publisher.impl.core with parameters of type PublicationNode
 boolean SectionPublicationTree.canPublishTo(PublicationNode publicationNode)
           
 PublishedDocument SectionPublicationTree.publish(DocumentModel doc, PublicationNode targetNode)
           
 PublishedDocument SectionPublicationTree.publish(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 PublishedDocument CoreProxyFactory.publishDocument(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 void SectionPublicationTree.unpublish(DocumentModel doc, PublicationNode targetNode)
           
 

Constructors in org.nuxeo.ecm.platform.publisher.impl.core with parameters of type PublicationNode
CoreFolderPublicationNode(DocumentModel doc, PublicationTree tree, PublicationNode parent, PublishedDocumentFactory factory)
           
CoreFolderPublicationNode(DocumentModel doc, java.lang.String treeConfigName, java.lang.String sid, PublicationNode parent, PublishedDocumentFactory factory)
           
 

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

Classes in org.nuxeo.ecm.platform.publisher.impl.localfs that implement PublicationNode
 class FSPublicationNode
           
 class LocalFSPublicationTree
           
 

Methods in org.nuxeo.ecm.platform.publisher.impl.localfs that return PublicationNode
 PublicationNode LocalFSPublicationTree.getNodeByPath(java.lang.String path)
           
 PublicationNode FSPublicationNode.getParent()
           
 

Methods in org.nuxeo.ecm.platform.publisher.impl.localfs that return types with arguments of type PublicationNode
 java.util.List<PublicationNode> FSPublicationNode.getChildrenNodes()
           
 

Methods in org.nuxeo.ecm.platform.publisher.impl.localfs with parameters of type PublicationNode
 PublishedDocument LocalFSPublicationTree.publish(DocumentModel doc, PublicationNode targetNode)
           
 PublishedDocument LocalFSPublicationTree.publish(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 PublishedDocument FSPublishedDocumentFactory.publishDocument(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 void LocalFSPublicationTree.unpublish(DocumentModel doc, PublicationNode targetNode)
           
 

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

Classes in org.nuxeo.ecm.platform.publisher.impl.service that implement PublicationNode
 class AbstractRemotableNode
          Abstract class for PublicationNode that delegate method calls to a remote service.
 class AbstractRemotableTree
          Abstract class for PublicationTree that delegates method calls to a remote service.
 class ProxyNode
          Remotable implementation of the PublicationNode interface.
 class ProxyTree
          Remotable implementation of the PublicationTree interface.
 

Methods in org.nuxeo.ecm.platform.publisher.impl.service that return PublicationNode
 PublicationNode AbstractRemotableTree.getNodeByPath(java.lang.String path)
           
 PublicationNode PublisherServiceImpl.getNodeByPath(java.lang.String sid, java.lang.String path)
           
 PublicationNode AbstractRemotableTree.getParent()
           
 PublicationNode AbstractRemotableNode.getParent()
           
 PublicationNode PublisherServiceImpl.getParent(PublicationNode node)
           
 PublicationNode AbstractRemotableTree.wrapToPublicationNode(DocumentModel documentModel)
           
 PublicationNode PublisherServiceImpl.wrapToPublicationNode(DocumentModel documentModel, CoreSession coreSession)
           
 PublicationNode PublisherServiceImpl.wrapToPublicationNode(java.lang.String sid, DocumentModel documentModel)
           
 

Methods in org.nuxeo.ecm.platform.publisher.impl.service that return types with arguments of type PublicationNode
 java.util.List<PublicationNode> ProxyTree.getChildrenNodes()
           
 java.util.List<PublicationNode> AbstractRemotableNode.getChildrenNodes()
           
 java.util.List<PublicationNode> PublisherServiceImpl.getChildrenNodes(PublicationNode node)
           
 

Methods in org.nuxeo.ecm.platform.publisher.impl.service with parameters of type PublicationNode
 boolean AbstractRemotableTree.canPublishTo(PublicationNode publicationNode)
           
 boolean PublisherServiceImpl.canPublishTo(java.lang.String sid, PublicationNode publicationNode)
           
 java.util.List<PublishedDocument> PublisherServiceImpl.getChildrenDocuments(PublicationNode node)
           
 java.util.List<PublicationNode> PublisherServiceImpl.getChildrenNodes(PublicationNode node)
           
 PublicationNode PublisherServiceImpl.getParent(PublicationNode node)
           
 java.util.List<PublishedDocument> PublisherServiceImpl.getPublishedDocumentInNode(PublicationNode node)
           
 java.util.List<PublishedDocument> AbstractRemotableTree.getPublishedDocumentInNode(PublicationNode node)
           
 PublishedDocument PublisherServiceImpl.publish(DocumentModel doc, PublicationNode targetNode)
           
 PublishedDocument AbstractRemotableTree.publish(DocumentModel doc, PublicationNode targetNode)
           
 PublishedDocument PublisherServiceImpl.publish(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 PublishedDocument AbstractRemotableTree.publish(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 void PublisherServiceImpl.unpublish(DocumentModel doc, PublicationNode targetNode)
           
 void AbstractRemotableTree.unpublish(DocumentModel doc, PublicationNode targetNode)
           
 

Constructors in org.nuxeo.ecm.platform.publisher.impl.service with parameters of type PublicationNode
ProxyNode(PublicationNode node, java.lang.String sid)
           
 

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

Methods in org.nuxeo.ecm.platform.publisher.jbpm with parameters of type PublicationNode
 PublishedDocument CoreProxyWithWorkflowFactory.publishDocument(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 

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

Classes in org.nuxeo.ecm.platform.publisher.remoting.client that implement PublicationNode
 class ClientRemotePublicationNode
          PublicationNode implementation that point to a remote tree on a remote server.
 class ClientRemotePublicationTree
          PublicationTree implementation that points to a remote tree on a remote server
 

Methods in org.nuxeo.ecm.platform.publisher.remoting.client that return types with arguments of type PublicationNode
 java.util.List<PublicationNode> ClientRemotePublicationTree.getChildrenNodes()
           
 

Methods in org.nuxeo.ecm.platform.publisher.remoting.client with parameters of type PublicationNode
 PublishedDocument ClientRemotePublicationTree.publish(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 PublishedDocument ClientProxyFactory.publishDocument(DocumentModel doc, PublicationNode targetNode)
           
 PublishedDocument ClientProxyFactory.publishDocument(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 

Constructors in org.nuxeo.ecm.platform.publisher.remoting.client with parameters of type PublicationNode
ClientRemotePublicationNode(java.lang.String treeConfigName, java.lang.String sid, PublicationNode node, java.lang.String serverSessionId, RemotePublicationTreeManager service, java.lang.String targetTreeName)
           
 

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

Methods in org.nuxeo.ecm.platform.publisher.remoting.marshaling that return PublicationNode
 PublicationNode DefaultPublicationNodeMarshaler.unMarshalPublicationNode(java.lang.String data)
           
 

Methods in org.nuxeo.ecm.platform.publisher.remoting.marshaling with parameters of type PublicationNode
 java.lang.String DefaultPublicationNodeMarshaler.marshalPublicationNode(PublicationNode node)
           
 

Uses of PublicationNode in org.nuxeo.ecm.platform.publisher.remoting.marshaling.basic
 

Classes in org.nuxeo.ecm.platform.publisher.remoting.marshaling.basic that implement PublicationNode
 class BasicPublicationNode
          Java implementation for the marshaled PublicationNode.
 

Methods in org.nuxeo.ecm.platform.publisher.remoting.marshaling.basic that return PublicationNode
 PublicationNode BasicPublicationNode.getParent()
           
 

Methods in org.nuxeo.ecm.platform.publisher.remoting.marshaling.basic that return types with arguments of type PublicationNode
 java.util.List<PublicationNode> BasicPublicationNode.getChildrenNodes()
           
 

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

Methods in org.nuxeo.ecm.platform.publisher.remoting.marshaling.interfaces that return PublicationNode
 PublicationNode PublicationNodeMarshaler.unMarshalPublicationNode(java.lang.String data)
           
 

Methods in org.nuxeo.ecm.platform.publisher.remoting.marshaling.interfaces with parameters of type PublicationNode
 java.lang.String PublicationNodeMarshaler.marshalPublicationNode(PublicationNode node)
           
 

Uses of PublicationNode in org.nuxeo.ecm.platform.publisher.remoting.restHandler
 

Methods in org.nuxeo.ecm.platform.publisher.remoting.restHandler that return PublicationNode
 PublicationNode RemotePubParam.getAsNode()
           
 

Uses of PublicationNode in org.nuxeo.ecm.platform.publisher.remoting.restProxies
 

Methods in org.nuxeo.ecm.platform.publisher.remoting.restProxies that return PublicationNode
 PublicationNode RemotePublicationTreeManagerRestProxy.getNodeByPath(java.lang.String sid, java.lang.String path)
           
 PublicationNode RemotePublicationTreeManagerRestProxy.getParent(PublicationNode node)
           
 PublicationNode RemotePublicationTreeManagerRestProxy.wrapToPublicationNode(java.lang.String sid, DocumentModel documentModel)
           
 

Methods in org.nuxeo.ecm.platform.publisher.remoting.restProxies that return types with arguments of type PublicationNode
 java.util.List<PublicationNode> RemotePublicationTreeManagerRestProxy.getChildrenNodes(PublicationNode node)
           
 

Methods in org.nuxeo.ecm.platform.publisher.remoting.restProxies with parameters of type PublicationNode
 boolean RemotePublicationTreeManagerRestProxy.canPublishTo(java.lang.String sid, PublicationNode publicationNode)
           
 java.util.List<PublishedDocument> RemotePublicationTreeManagerRestProxy.getChildrenDocuments(PublicationNode node)
           
 java.util.List<PublicationNode> RemotePublicationTreeManagerRestProxy.getChildrenNodes(PublicationNode node)
           
 PublicationNode RemotePublicationTreeManagerRestProxy.getParent(PublicationNode node)
           
 java.util.List<PublishedDocument> RemotePublicationTreeManagerRestProxy.getPublishedDocumentInNode(PublicationNode node)
           
 PublishedDocument RemotePublicationTreeManagerRestProxy.publish(DocumentModel doc, PublicationNode targetNode)
           
 PublishedDocument RemotePublicationTreeManagerRestProxy.publish(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 void RemotePublicationTreeManagerRestProxy.unpublish(DocumentModel doc, PublicationNode targetNode)
           
 

Uses of PublicationNode in org.nuxeo.ecm.platform.publisher.remoting.server
 

Classes in org.nuxeo.ecm.platform.publisher.remoting.server that implement PublicationNode
 class CoreTreeWithExternalDocs
          PublicationTree implementation that supports having plain Documents directly inside the sections.
 

Methods in org.nuxeo.ecm.platform.publisher.remoting.server with parameters of type PublicationNode
 PublishedDocument CoreTreeWithExternalDocs.publish(DocumentModel doc, PublicationNode targetNode)
           
 PublishedDocument CoreTreeWithExternalDocs.publish(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 PublishedDocument SimpleExternalDocumentModelFactory.publishDocument(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 void CoreTreeWithExternalDocs.unpublish(DocumentModel doc, PublicationNode targetNode)
           
 

Uses of PublicationNode in org.nuxeo.ecm.platform.publisher.synchonize.client
 

Subinterfaces of PublicationNode in org.nuxeo.ecm.platform.publisher.synchonize.client
 interface ClientSynchonizedPublicationTree
           
 

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

Subinterfaces of PublicationNode in org.nuxeo.ecm.platform.publisher.synchonize.server
 interface ServerSynchronizablePublicationTree
           
 

Classes in org.nuxeo.ecm.platform.publisher.synchonize.server that implement PublicationNode
 class AbstractSynchonizablePublicationTree
           
 

Methods in org.nuxeo.ecm.platform.publisher.synchonize.server that return PublicationNode
 PublicationNode AbstractSynchonizablePublicationTree.getNodeByPath(java.lang.String path)
           
 PublicationNode AbstractSynchonizablePublicationTree.getParent()
           
 

Methods in org.nuxeo.ecm.platform.publisher.synchonize.server that return types with arguments of type PublicationNode
 java.util.List<PublicationNode> AbstractSynchonizablePublicationTree.getChildrenNodes()
           
 java.util.List<PublicationNode> ServerSynchronizablePublicationTree.listModifiedNodes(long timeDelta)
           
 java.util.List<PublicationNode> AbstractSynchonizablePublicationTree.listModifiedNodes(long timeDelta)
           
 

Methods in org.nuxeo.ecm.platform.publisher.synchonize.server with parameters of type PublicationNode
 java.util.List<PublishedDocument> AbstractSynchonizablePublicationTree.getPublishedDocumentInNode(PublicationNode node)
           
 PublishedDocument AbstractSynchonizablePublicationTree.publish(DocumentModel doc, PublicationNode targetNode)
           
 PublishedDocument AbstractSynchonizablePublicationTree.publish(DocumentModel doc, PublicationNode targetNode, java.util.Map<java.lang.String,java.lang.String> params)
           
 void AbstractSynchonizablePublicationTree.unpublish(DocumentModel doc, PublicationNode targetNode)
           
 

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

Methods in org.nuxeo.ecm.platform.publisher.web with parameters of type PublicationNode
 boolean PublishActionsBean.canPublishTo(PublicationNode publicationNode)
           
 java.lang.String PublishActionsBean.doPublish(PublicationNode publicationNode)
           
 java.lang.String PublishActionsBean.doPublish(PublicationTree tree, PublicationNode publicationNode)
           
 


Nuxeo Enterprise Platform 5.4

Copyright © 2010 Nuxeo SAS. All Rights Reserved.