Interface Document

    • Method Detail

      • getSession

        Session getSession()
        Gets the session that owns this document.
        Returns:
        the session
      • getName

        String getName()
        Gets the name of this document.
        Returns:
        the document name
      • getPos

        Long getPos()
        Gets the document's position in its containing folder (if ordered).
        Returns:
        the position
        Since:
        6.0
      • getUUID

        String getUUID()
        Gets this document's UUID.
        Returns:
        the document UUID
      • getParent

        Document getParent()
        Gets the parent document, or null if this is the root document.
        Returns:
        the parent document, or null
      • getPath

        String getPath()
        Gets the path of this document.
        Returns:
        the path
      • setValue

        void setValue​(String xpath,
                      Object value)
               throws PropertyException
        Sets a property value.

        The xpath may point to a partial path, in which case the value may be a complex List or Map.

        Parameters:
        xpath - the xpath of the property to set
        value - the value to set
        Throws:
        PropertyException - if the property does not exist or the value is of the wrong type
        Since:
        7.3
      • getValue

        Object getValue​(String xpath)
                 throws PropertyException
        Gets a property value.

        The xpath may point to a partial path, in which case the value may be a complex List or Map.

        Parameters:
        xpath - the xpath of the property to set
        Returns:
        the property value or null if the property is not set
        Throws:
        PropertyException - if the property does not exist
      • isFolder

        boolean isFolder()
        Checks whether this document is a folder.
        Returns:
        true if the document is a folder, false otherwise
      • setReadOnly

        void setReadOnly​(boolean readonly)
        Sets this document as readonly or not.
        Since:
        5.9.2
      • isReadOnly

        boolean isReadOnly()
        Checks whether this document is readonly or not.
        Since:
        5.9.2
      • remove

        void remove()
        Removes this document and all its children, if any.
      • remove

        void remove​(NuxeoPrincipal principal)
        Removes this document and all its children, if any.
        Parameters:
        principal - the caller
        Since:
        11.1
      • removeSingleton

        void removeSingleton()
        Removes this document only, without its children.
        Since:
        11.1
      • makeRecord

        void makeRecord()
        Turns the document into a record.

        A record is a document with specific capabilities related to mandatory retention until a given date, and legal holds. In addition, its main blob receives special treatment from the document blob manager to make sure it's never shared with another blob at the storage level, and is deleted as soon as the record is deleted.

        If the document is already a record, this method has no effect.

        The permission "MakeRecord" is required.

        Since:
        11.1
        See Also:
        isRecord()
      • isRecord

        boolean isRecord()
        Checks if the document is a record.
        Returns:
        true if the document is a record, false otherwise
        Since:
        11.1
        See Also:
        makeRecord()
      • setRetainUntil

        void setRetainUntil​(Calendar retainUntil)
                     throws PropertyException
        Sets a retention date for the document (a record).

        If no previous retention date was set, or if the previous retention date was indeterminate, or if the previous retention date was before the given value, then the retention date is set to the given value.

        If the previous retention date was after the given value (that is, if trying to reduce the retention time), an exception is thrown.

        If the given value is null and the previous retention date is in the past (it has already expired), then the retention date is set to null.

        The permission "SetRetention" is required.

        Parameters:
        retainUntil - the new retention date
        Throws:
        PropertyException - if trying to reduce the retention time, or if the document is not a record
        Since:
        11.1
        See Also:
        getRetainUntil(), CoreSession.RETAIN_UNTIL_INDETERMINATE
      • setLegalHold

        void setLegalHold​(boolean hold)
        Sets or removes a legal hold on the document (a record).

        The permission "ManageLegalHold" is required.

        Parameters:
        hold - true to set a legal hold, false to remove it
        Throws:
        PropertyException - if the document is not a record
        Since:
        11.1
        See Also:
        hasLegalHold()
      • hasLegalHold

        boolean hasLegalHold()
        Checks if the document has a legal hold set.
        Returns:
        true if a legal hold has been set on the document, false otherwise
        Since:
        11.1
        See Also:
        setLegalHold(boolean)
      • isUnderRetentionOrLegalHold

        boolean isUnderRetentionOrLegalHold()
        Checks if the document has a retention date in the future or has a legal hold.
        Returns:
        true if the document has a retention date in the future or if it has a legal hold, false otherwise
        Since:
        11.1
        See Also:
        getRetainUntil(), hasLegalHold()
      • getLifeCycleState

        String getLifeCycleState()
        Gets the life cycle state of this document.
        Returns:
        the life cycle state
      • setCurrentLifeCycleState

        void setCurrentLifeCycleState​(String state)
        Sets the life cycle state of this document.
        Parameters:
        state - the life cycle state
      • getLifeCyclePolicy

        String getLifeCyclePolicy()
        Gets the life cycle policy of this document.
        Returns:
        the life cycle policy
      • setLifeCyclePolicy

        void setLifeCyclePolicy​(String policy)
        Sets the life cycle policy of this document.
        Parameters:
        policy - the life cycle policy
      • isProxy

        boolean isProxy()
        Checks whether or not this document is a proxy.
        Returns:
        true if this document is a proxy, false otherwise
      • getRepositoryName

        String getRepositoryName()
        Gets the repository in which the document lives.
        Returns:
        the repository name.
      • getChangeToken

        String getChangeToken()
        Gets the current change token for this document.
        Returns:
        the change token
        Since:
        9.1
      • validateUserVisibleChangeToken

        boolean validateUserVisibleChangeToken​(String changeToken)
        Validates that the passed user-visible change token is compatible with the one for this document.
        Returns:
        false if the change token is not valid
        Since:
        9.2
      • markUserChange

        void markUserChange()
        Marks the document as being modified by a user change.

        This causes an additional change token increment and check during save.

        Since:
        9.2
      • getAllFacets

        Set<StringgetAllFacets()
        Gets the facets available on this document (from the type and the instance facets).
        Returns:
        the facets
        Since:
        5.4.2
      • getFacets

        String[] getFacets()
        Gets the facets defined on this document instance. The type facets are not returned.
        Returns:
        the facets
        Since:
        5.4.2
      • hasFacet

        boolean hasFacet​(String facet)
        Checks whether this document has a given facet, either from its type or added on the instance.
        Parameters:
        facet - the facet name
        Returns:
        true if the document has the facet
        Since:
        5.4.2
      • addFacet

        boolean addFacet​(String facet)
        Adds a facet to this document.

        Does nothing if the facet was already present on the document.

        Parameters:
        facet - the facet name
        Returns:
        true if the facet was added, or false if it is already present
        Throws:
        IllegalArgumentException - if the facet does not exist
        Since:
        5.4.2
      • removeFacet

        boolean removeFacet​(String facet)
        Removes a facet from this document.

        It's not possible to remove a facet coming from the document type.

        Parameters:
        facet - the facet name
        Returns:
        true if the facet was removed, or false if it isn't present or is present on the type or does not exit
        Since:
        5.4.2
      • setLock

        Lock setLock​(Lock lock)
        Sets a lock on this document.
        Parameters:
        lock - the lock to set
        Returns:
        null if locking succeeded, or the existing lock if locking failed
      • removeLock

        Lock removeLock​(String owner)
        Removes a lock from this document.
        Parameters:
        owner - the owner to check, or null for no check
        Returns:
        null if there was no lock or if removal succeeded, or a lock if it blocks removal due to owner mismatch
      • getLock

        Lock getLock()
        Gets the lock if one set on this document.
        Returns:
        the lock, or null if no lock is set
      • getChildrenIds

        List<StringgetChildrenIds()
        Gets a list of the children ids.
        Returns:
        a list of children ids.
        Since:
        1.4.1
      • hasChild

        boolean hasChild​(String name)
        Checks whether this document has a child of the given name.
        Parameters:
        name - the name of the child to check
        Returns:
        true if the child exists, false otherwise
      • hasChildren

        boolean hasChildren()
        Tests if the document has any children.
        Returns:
        true if the document has children, false otherwise
      • addChild

        Document addChild​(String name,
                          String typeName)
        Creates a new child document of the given type.
        Parameters:
        name - the name of the new child to create
        typeName - the type of the child to create
        Returns:
        the newly created document
      • orderBefore

        void orderBefore​(String src,
                         String dest)
        Orders the given source child before the destination child.

        Both source and destination must be names that point to child documents of this document. The source document will be placed before the destination one. If destination is null, the source document will be appended at the end of the children list.

        Parameters:
        src - the document to move
        dest - the document before which to place the source document
      • checkIn

        Document checkIn​(String label,
                         String checkinComment)
        Creates a new version.
        Parameters:
        label - the version label
        checkinComment - the checkin comment
        Returns:
        the created version
      • getVersionsIds

        List<StringgetVersionsIds()
        Gets the list of version ids for this document.
        Returns:
        the list of version ids
        Since:
        1.4.1
      • getVersions

        List<DocumentgetVersions()
        Gets the versions for this document.
        Returns:
        the versions of the document, or an empty list if there are no versions
      • getLastVersion

        Document getLastVersion()
        Gets the last version of this document.

        Returns null if there is no version at all.

        Returns:
        the last version, or null if there is no version
      • getSourceDocument

        Document getSourceDocument()
        Gets the source for this document.

        For a version, it's the working copy.

        For a proxy, it's the version the proxy points to.

        Returns:
        the source document
      • restore

        void restore​(Document version)
        Replaces this document's content with the version specified.
        Parameters:
        version - the version to replace with
      • getVersion

        Document getVersion​(String label)
        Gets a version of this document, given its label.
        Parameters:
        label - the version label
        Returns:
        the version
      • isVersion

        boolean isVersion()
        Checks whether this document is a version document.
        Returns:
        true if it's a version, false otherwise
      • getBaseVersion

        Document getBaseVersion()
        Gets the version to which a checked in document is linked.

        Returns null for a checked out document or a version or a proxy.

        Returns:
        the version, or null
      • isCheckedOut

        boolean isCheckedOut()
        Checks whether this document is checked out.
        Returns:
        true if the document is checked out, or false otherwise
      • getVersionCreationDate

        Calendar getVersionCreationDate()
        Gets the version creation date of this document if it's a version or a proxy.
        Returns:
        the version creation date, or null if it's not a version or a proxy
      • getCheckinComment

        String getCheckinComment()
        Gets the version check in comment of this document if it's a version or a proxy.
        Returns:
        the check in comment, or null if it's not a version or a proxy
      • isLatestVersion

        boolean isLatestVersion()
        Checks whether this document is the latest version.
        Returns:
        true if this is the latest version, or false otherwise
      • isMajorVersion

        boolean isMajorVersion()
        Checks whether this document is a major version.
        Returns:
        true if this is a major version, or false otherwise
      • isLatestMajorVersion

        boolean isLatestMajorVersion()
        Checks whether this document is the latest major version.
        Returns:
        true if this is the latest major version, or false otherwise
      • isVersionSeriesCheckedOut

        boolean isVersionSeriesCheckedOut()
        Checks if there is a checked out working copy for the version series of this document.
        Returns:
        true if there is a checked out working copy
      • getWorkingCopy

        Document getWorkingCopy()
        Gets the working copy for this document.
        Returns:
        the working copy
      • setTargetDocument

        void setTargetDocument​(Document target)
        Sets the document (version or live document) to which this proxy points.