Class DocumentManager

    • Constructor Summary

      Constructors 
      Constructor Description
      DocumentManager()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      DocumentConfig get​(SessionConfig sessionConfig, java.lang.String documentId, ITransaction transaction)
      Returns the DocumentConfig for a document with the given id.
      java.util.Collection<DocumentConfig> getChildren​(SessionConfig sessionConfig, java.lang.String serviceInstanceId, java.lang.String folderId, int type, ITransaction transaction)
      Returns the entries in the specified folder.
      java.util.Collection<java.lang.String> getDocumentPublishToPrincipals​(java.lang.String parentFolderId)
      Return a the list of principals for which the document is published to.
      java.util.Collection<java.lang.String> getFolderIdsByParentAndName​(SessionConfig sessionConfig, java.lang.String serviceInstanceId, java.lang.String parentFolderId, java.lang.String folderName, ITransaction transaction)
      Returns the ids of the folders child of the given parent and with the given name.
      java.lang.String getFolderPath​(SessionConfig sessionConfig, java.lang.String folderId, ITransaction transaction)
      Returns the virtual path to the folder.
      DocumentConfig getFromFileId​(java.lang.String fileId)
      Returns the document related to a file with the given identifier or null if no such document was found.
      void moveDocument​(SessionConfig sessionConfig, java.lang.String documentId, java.lang.String destFolderId, ITransaction transaction)
      Moves a document (or a folder) to another folder.
      void updateDocumentHierarchyPublishTo​(java.lang.String documentId, java.util.Collection<java.lang.String> heritagePrincipalsId)
      Update the list of principals the document is published to
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DocumentManager

        public DocumentManager()
    • Method Detail

      • get

        public DocumentConfig get​(SessionConfig sessionConfig,
                                  java.lang.String documentId,
                                  ITransaction transaction)
                           throws PortalException
        Description copied from interface: IDocumentManager
        Returns the DocumentConfig for a document with the given id.
        Specified by:
        get in interface IDocumentManager
        Parameters:
        sessionConfig - identifier for the session.
        documentId - the id of the document.
        transaction - the transaction for persistence access.
        Returns:
        the DocumentConfig for the document, or null if it is not found.
        Throws:
        PortalException
      • getFolderIdsByParentAndName

        public java.util.Collection<java.lang.String> getFolderIdsByParentAndName​(SessionConfig sessionConfig,
                                                                                  java.lang.String serviceInstanceId,
                                                                                  java.lang.String parentFolderId,
                                                                                  java.lang.String folderName,
                                                                                  ITransaction transaction)
                                                                           throws PortalException
        Description copied from interface: IDocumentManager
        Returns the ids of the folders child of the given parent and with the given name.
        Specified by:
        getFolderIdsByParentAndName in interface IDocumentManager
        Parameters:
        sessionConfig - identifier for the session.
        serviceInstanceId - the content's service instance id.
        parentFolderId - the parent folder's id. Null if the folder must not have parent.
        folderName - the folder name.
        transaction - the transaction for persistence access.
        Returns:
        Throws:
        PortalException
      • getFolderPath

        public java.lang.String getFolderPath​(SessionConfig sessionConfig,
                                              java.lang.String folderId,
                                              ITransaction transaction)
                                       throws PortalException
        Description copied from interface: IDocumentManager
        Returns the virtual path to the folder.
        Specified by:
        getFolderPath in interface IDocumentManager
        Parameters:
        sessionConfig - identifier for the session.
        folderId - the id of the folder.
        transaction - the transaction for persistence access.
        Returns:
        the virtual path to the folder.
        Throws:
        PortalException
      • moveDocument

        public void moveDocument​(SessionConfig sessionConfig,
                                 java.lang.String documentId,
                                 java.lang.String destFolderId,
                                 ITransaction transaction)
                          throws PortalException
        Description copied from interface: IDocumentManager
        Moves a document (or a folder) to another folder.
        Specified by:
        moveDocument in interface IDocumentManager
        Parameters:
        sessionConfig - identifier for the session.
        documentId - the document's id.
        destFolderId - the id of the destination folder.
        transaction - the transaction for persistence access.
        Throws:
        PortalException
      • getFromFileId

        public DocumentConfig getFromFileId​(java.lang.String fileId)
                                     throws PortalException
        Description copied from interface: IDocumentManager
        Returns the document related to a file with the given identifier or null if no such document was found.
        Specified by:
        getFromFileId in interface IDocumentManager
        Parameters:
        fileId - the file identifier
        Returns:
        the document related to a file with the given identifier or null if no such document was found
        Throws:
        PortalException