Class SQLDocumentProxy

java.lang.Object
org.nuxeo.ecm.core.storage.sql.coremodel.SQLDocumentProxy
All Implemented Interfaces:
Document, SQLDocument

public class SQLDocumentProxy extends Object implements SQLDocument
A proxy is a shortcut to a target document (a version or normal document).
  • Field Details

  • Constructor Details

    • SQLDocumentProxy

      protected SQLDocumentProxy(Document proxy, Document target)
  • Method Details

    • getSchema

      protected String getSchema(String xpath)
    • isSchemaForProxy

      protected boolean isSchemaForProxy(String schema)
      Checks if the given schema should be resolved on the proxy or the target.
    • isPropertyForProxy

      protected boolean isPropertyForProxy(String xpath)
      Checks if the given property should be resolved on the proxy or the target.
    • getNode

      public Node getNode()
      Description copied from interface: SQLDocument
      Returns the node with info about the hierarchy location.
      Specified by:
      getNode in interface SQLDocument
    • isProxy

      public boolean isProxy()
      Description copied from interface: Document
      Checks whether or not this document is a proxy.
      Specified by:
      isProxy in interface Document
      Returns:
      true if this document is a proxy, false otherwise
    • getUUID

      public String getUUID()
      Description copied from interface: Document
      Gets this document's UUID.
      Specified by:
      getUUID in interface Document
      Returns:
      the document UUID
    • getName

      public String getName()
      Description copied from interface: Document
      Gets the name of this document.
      Specified by:
      getName in interface Document
      Returns:
      the document name
    • getPos

      public Long getPos()
      Description copied from interface: Document
      Gets the document's position in its containing folder (if ordered).
      Specified by:
      getPos in interface Document
      Returns:
      the position
    • getParent

      public Document getParent()
      Description copied from interface: Document
      Gets the parent document, or null if this is the root document.
      Specified by:
      getParent in interface Document
      Returns:
      the parent document, or null
    • getPath

      public String getPath()
      Description copied from interface: Document
      Gets the path of this document.
      Specified by:
      getPath in interface Document
      Returns:
      the path
    • remove

      public void remove()
      Description copied from interface: Document
      Removes this document and all its children, if any.
      Specified by:
      remove in interface Document
    • remove

      public void remove(NuxeoPrincipal principal)
      Description copied from interface: Document
      Removes this document and all its children, if any.
      Specified by:
      remove in interface Document
      Parameters:
      principal - the caller
    • removeSingleton

      public void removeSingleton()
      Description copied from interface: Document
      Removes this document only, without its children.
      Specified by:
      removeSingleton in interface Document
    • getType

      public DocumentType getType()
      Description copied from interface: Document
      Gets the type of this document.
      Specified by:
      getType in interface Document
      Returns:
      the document type
    • getRepositoryName

      public String getRepositoryName()
      Description copied from interface: Document
      Gets the repository in which the document lives.
      Specified by:
      getRepositoryName in interface Document
      Returns:
      the repository name.
    • getSession

      public Session getSession()
      Description copied from interface: Document
      Gets the session that owns this document.
      Specified by:
      getSession in interface Document
      Returns:
      the session
    • isFolder

      public boolean isFolder()
      Description copied from interface: Document
      Checks whether this document is a folder.
      Specified by:
      isFolder in interface Document
      Returns:
      true if the document is a folder, false otherwise
    • setReadOnly

      public void setReadOnly(boolean readonly)
      Description copied from interface: Document
      Sets this document as readonly or not.
      Specified by:
      setReadOnly in interface Document
    • isReadOnly

      public boolean isReadOnly()
      Description copied from interface: Document
      Checks whether this document is readonly or not.
      Specified by:
      isReadOnly in interface Document
    • readDocumentPart

      public void readDocumentPart(DocumentPart dp) throws PropertyException
      Description copied from interface: Document
      Loads a DocumentPart from storage.

      Reading data is done by DocumentPart because of per-proxy schemas.

      Specified by:
      readDocumentPart in interface Document
      Throws:
      PropertyException
    • getWriteContext

      public Document.WriteContext getWriteContext()
      Description copied from interface: Document
      Gets a write context for the current document.
      Specified by:
      getWriteContext in interface Document
    • writeDocumentPart

      public boolean writeDocumentPart(DocumentPart dp, Document.WriteContext writeContext, boolean create) throws PropertyException
      Description copied from interface: Document
      Writes a DocumentPart to storage.

      Writing data is done by DocumentPart because of per-proxy schemas.

      Specified by:
      writeDocumentPart in interface Document
      Parameters:
      dp - the document part
      writeContext - the write context
      create - whether this is for a document creation
      Returns:
      true if something changed
      Throws:
      PropertyException
    • setSystemProp

      public void setSystemProp(String name, Serializable value)
      Description copied from interface: Document
      Sets a system property.
      Specified by:
      setSystemProp in interface Document
    • getSystemProp

      public <T extends Serializable> T getSystemProp(String name, Class<T> type)
      Description copied from interface: Document
      Gets a system property.
      Specified by:
      getSystemProp in interface Document
    • getChangeToken

      public String getChangeToken()
      Description copied from interface: Document
      Gets the current change token for this document.
      Specified by:
      getChangeToken in interface Document
      Returns:
      the change token
    • getProxyChangeToken

      protected static String getProxyChangeToken(String proxyToken, String targetToken)
    • validateUserVisibleChangeToken

      public boolean validateUserVisibleChangeToken(String userVisibleChangeToken)
      Description copied from interface: Document
      Validates that the passed user-visible change token is compatible with the one for this document.
      Specified by:
      validateUserVisibleChangeToken in interface Document
      Returns:
      false if the change token is not valid
    • markUserChange

      public void markUserChange()
      Description copied from interface: Document
      Marks the document as being modified by a user change.

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

      Specified by:
      markUserChange in interface Document
    • getAllFacets

      public Set<String> getAllFacets()
      Description copied from interface: Document
      Gets the facets available on this document (from the type and the instance facets).
      Specified by:
      getAllFacets in interface Document
      Returns:
      the facets
    • getFacets

      public String[] getFacets()
      Description copied from interface: Document
      Gets the facets defined on this document instance. The type facets are not returned.
      Specified by:
      getFacets in interface Document
      Returns:
      the facets
    • hasFacet

      public boolean hasFacet(String facet)
      Description copied from interface: Document
      Checks whether this document has a given facet, either from its type or added on the instance.
      Specified by:
      hasFacet in interface Document
      Parameters:
      facet - the facet name
      Returns:
      true if the document has the facet
    • addFacet

      public boolean addFacet(String facet)
      Description copied from interface: Document
      Adds a facet to this document.

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

      Specified by:
      addFacet in interface Document
      Parameters:
      facet - the facet name
      Returns:
      true if the facet was added, or false if it is already present
    • removeFacet

      public boolean removeFacet(String facet)
      Description copied from interface: Document
      Removes a facet from this document.

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

      Specified by:
      removeFacet in interface Document
      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
    • makeRecord

      public void makeRecord()
      Description copied from interface: Document
      Turns the document into an enforced 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.

      Specified by:
      makeRecord in interface Document
      See Also:
    • makeFlexibleRecord

      public void makeFlexibleRecord()
      Description copied from interface: Document
      Turns the document into a flexible record.

      A record is a document with specific capabilities related to mandatory retention until a given date, and legal holds.

      If the document is already a flexible record, this method has no effect. An enforced record cannot be turned into a flexible record.

      The permission "MakeRecord" is required.

      Specified by:
      makeFlexibleRecord in interface Document
      See Also:
    • isRecord

      public boolean isRecord()
      Description copied from interface: Document
      Checks if the document is a record.
      Specified by:
      isRecord in interface Document
      Returns:
      true if the document is a record, false otherwise
      See Also:
    • isFlexibleRecord

      public boolean isFlexibleRecord()
      Specified by:
      isFlexibleRecord in interface Document
      Returns:
      true if the document is a flexible record, false otherwise
    • setRetainUntil

      public void setRetainUntil(Calendar retainUntil)
      Description copied from interface: Document
      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.

      Specified by:
      setRetainUntil in interface Document
      Parameters:
      retainUntil - the new retention date
      See Also:
    • getRetainUntil

      public Calendar getRetainUntil()
      Description copied from interface: Document
      Gets the retention date for the document.
      Specified by:
      getRetainUntil in interface Document
      Returns:
      the retention date, or "SetRetention" for a retention in the indeterminate future, or null if there is no retention date
      See Also:
    • setLegalHold

      public void setLegalHold(boolean hold)
      Description copied from interface: Document
      Sets or removes a legal hold on the document (a record).

      The permission "ManageLegalHold" is required.

      Specified by:
      setLegalHold in interface Document
      Parameters:
      hold - true to set a legal hold, false to remove it
      See Also:
    • hasLegalHold

      public boolean hasLegalHold()
      Description copied from interface: Document
      Checks if the document has a legal hold set.
      Specified by:
      hasLegalHold in interface Document
      Returns:
      true if a legal hold has been set on the document, false otherwise
      See Also:
    • isUnderRetentionOrLegalHold

      public boolean isUnderRetentionOrLegalHold()
      Description copied from interface: Document
      Checks if the document has a retention date in the future or has a legal hold.
      Specified by:
      isUnderRetentionOrLegalHold in interface Document
      Returns:
      true if the document has a retention date in the future or if it has a legal hold, false otherwise
      See Also:
    • setRetentionActive

      public void setRetentionActive(boolean retentionActive)
      Description copied from interface: Document
      Sets or unsets this document as under active retention.
      Specified by:
      setRetentionActive in interface Document
    • isRetentionActive

      public boolean isRetentionActive()
      Description copied from interface: Document
      Checks whether this document is under active retention.
      Specified by:
      isRetentionActive in interface Document
    • getLifeCyclePolicy

      public String getLifeCyclePolicy()
      Description copied from interface: Document
      Gets the life cycle policy of this document.
      Specified by:
      getLifeCyclePolicy in interface Document
      Returns:
      the life cycle policy
    • setLifeCyclePolicy

      public void setLifeCyclePolicy(String policy)
      Description copied from interface: Document
      Sets the life cycle policy of this document.
      Specified by:
      setLifeCyclePolicy in interface Document
      Parameters:
      policy - the life cycle policy
    • getLifeCycleState

      public String getLifeCycleState()
      Description copied from interface: Document
      Gets the life cycle state of this document.
      Specified by:
      getLifeCycleState in interface Document
      Returns:
      the life cycle state
    • setCurrentLifeCycleState

      public void setCurrentLifeCycleState(String state)
      Description copied from interface: Document
      Sets the life cycle state of this document.
      Specified by:
      setCurrentLifeCycleState in interface Document
      Parameters:
      state - the life cycle state
    • followTransition

      public void followTransition(String transition) throws LifeCycleException
      Description copied from interface: Document
      Follows a given life cycle transition.

      This will update the life cycle state of the document.

      Specified by:
      followTransition in interface Document
      Parameters:
      transition - the name of the transition to follow
      Throws:
      LifeCycleException
    • getAllowedStateTransitions

      public Collection<String> getAllowedStateTransitions()
      Description copied from interface: Document
      Returns the allowed state transitions for this document.
      Specified by:
      getAllowedStateTransitions in interface Document
      Returns:
      a collection of state transitions
    • getLock

      public Lock getLock()
      Description copied from interface: Document
      Gets the lock if one set on this document.
      Specified by:
      getLock in interface Document
      Returns:
      the lock, or null if no lock is set
    • setLock

      public Lock setLock(Lock lock)
      Description copied from interface: Document
      Sets a lock on this document.
      Specified by:
      setLock in interface Document
      Parameters:
      lock - the lock to set
      Returns:
      null if locking succeeded, or the existing lock if locking failed
    • removeLock

      public Lock removeLock(String owner)
      Description copied from interface: Document
      Removes a lock from this document.
      Specified by:
      removeLock in interface 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
    • isVersion

      public boolean isVersion()
      Description copied from interface: Document
      Checks whether this document is a version document.
      Specified by:
      isVersion in interface Document
      Returns:
      true if it's a version, false otherwise
    • getBaseVersion

      public Document getBaseVersion()
      Description copied from interface: Document
      Gets the version to which a checked in document is linked.

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

      Specified by:
      getBaseVersion in interface Document
      Returns:
      the version, or null
    • getVersionSeriesId

      public String getVersionSeriesId()
      Description copied from interface: Document
      Gets the version series id.
      Specified by:
      getVersionSeriesId in interface Document
      Returns:
      the version series id
    • getSourceDocument

      public Document getSourceDocument()
      Description copied from interface: Document
      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.

      Specified by:
      getSourceDocument in interface Document
      Returns:
      the source document
    • checkIn

      public Document checkIn(String label, String checkinComment)
      Description copied from interface: Document
      Creates a new version.
      Specified by:
      checkIn in interface Document
      Parameters:
      label - the version label
      checkinComment - the checkin comment
      Returns:
      the created version
    • checkOut

      public void checkOut()
      Specified by:
      checkOut in interface Document
    • isCheckedOut

      public boolean isCheckedOut()
      Description copied from interface: Document
      Checks whether this document is checked out.
      Specified by:
      isCheckedOut in interface Document
      Returns:
      true if the document is checked out, or false otherwise
    • isLatestVersion

      public boolean isLatestVersion()
      Description copied from interface: Document
      Checks whether this document is the latest version.
      Specified by:
      isLatestVersion in interface Document
      Returns:
      true if this is the latest version, or false otherwise
    • isMajorVersion

      public boolean isMajorVersion()
      Description copied from interface: Document
      Checks whether this document is a major version.
      Specified by:
      isMajorVersion in interface Document
      Returns:
      true if this is a major version, or false otherwise
    • isLatestMajorVersion

      public boolean isLatestMajorVersion()
      Description copied from interface: Document
      Checks whether this document is the latest major version.
      Specified by:
      isLatestMajorVersion in interface Document
      Returns:
      true if this is the latest major version, or false otherwise
    • isVersionSeriesCheckedOut

      public boolean isVersionSeriesCheckedOut()
      Description copied from interface: Document
      Checks if there is a checked out working copy for the version series of this document.
      Specified by:
      isVersionSeriesCheckedOut in interface Document
      Returns:
      true if there is a checked out working copy
    • getVersionLabel

      public String getVersionLabel()
      Description copied from interface: Document
      Gets the version label.
      Specified by:
      getVersionLabel in interface Document
      Returns:
      the version label
    • getCheckinComment

      public String getCheckinComment()
      Description copied from interface: Document
      Gets the version check in comment of this document if it's a version or a proxy.
      Specified by:
      getCheckinComment in interface Document
      Returns:
      the check in comment, or null if it's not a version or a proxy
    • getWorkingCopy

      public Document getWorkingCopy()
      Description copied from interface: Document
      Gets the working copy for this document.
      Specified by:
      getWorkingCopy in interface Document
      Returns:
      the working copy
    • getVersionCreationDate

      public Calendar getVersionCreationDate()
      Description copied from interface: Document
      Gets the version creation date of this document if it's a version or a proxy.
      Specified by:
      getVersionCreationDate in interface Document
      Returns:
      the version creation date, or null if it's not a version or a proxy
    • restore

      public void restore(Document version)
      Description copied from interface: Document
      Replaces this document's content with the version specified.
      Specified by:
      restore in interface Document
      Parameters:
      version - the version to replace with
    • getVersionsIds

      public List<String> getVersionsIds()
      Description copied from interface: Document
      Gets the list of version ids for this document.
      Specified by:
      getVersionsIds in interface Document
      Returns:
      the list of version ids
    • getVersion

      public Document getVersion(String label)
      Description copied from interface: Document
      Gets a version of this document, given its label.
      Specified by:
      getVersion in interface Document
      Parameters:
      label - the version label
      Returns:
      the version
    • getVersions

      public List<Document> getVersions()
      Description copied from interface: Document
      Gets the versions for this document.
      Specified by:
      getVersions in interface Document
      Returns:
      the versions of the document, or an empty list if there are no versions
    • getLastVersion

      public Document getLastVersion()
      Description copied from interface: Document
      Gets the last version of this document.

      Returns null if there is no version at all.

      Specified by:
      getLastVersion in interface Document
      Returns:
      the last version, or null if there is no version
    • getChild

      public Document getChild(String name)
      Description copied from interface: Document
      Gets a child document given its name.

      Throws DocumentNotFoundException if the document could not be found.

      Specified by:
      getChild in interface Document
      Parameters:
      name - the name of the child to retrieve
      Returns:
      the child if exists
    • getChildren

      public List<Document> getChildren()
      Description copied from interface: Document
      Gets the children of the document.
      Specified by:
      getChildren in interface Document
      Returns:
      the children
    • getChildrenIds

      public List<String> getChildrenIds()
      Description copied from interface: Document
      Gets a list of the children ids.
      Specified by:
      getChildrenIds in interface Document
      Returns:
      a list of children ids.
    • hasChild

      public boolean hasChild(String name)
      Description copied from interface: Document
      Checks whether this document has a child of the given name.
      Specified by:
      hasChild in interface Document
      Parameters:
      name - the name of the child to check
      Returns:
      true if the child exists, false otherwise
    • hasChildren

      public boolean hasChildren()
      Description copied from interface: Document
      Tests if the document has any children.
      Specified by:
      hasChildren in interface Document
      Returns:
      true if the document has children, false otherwise
    • addChild

      public Document addChild(String name, String typeName)
      Description copied from interface: Document
      Creates a new child document of the given type.
      Specified by:
      addChild in interface Document
      Parameters:
      name - the name of the new child to create
      typeName - the type of the child to create
      Returns:
      the newly created document
    • orderBefore

      public void orderBefore(String src, String dest)
      Description copied from interface: Document
      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.

      Specified by:
      orderBefore in interface Document
      Parameters:
      src - the document to move
      dest - the document before which to place the source document
    • getTargetDocument

      public Document getTargetDocument()
      Description copied from interface: Document
      Gets the document (version or live document) to which this proxy points.
      Specified by:
      getTargetDocument in interface Document
    • setTargetDocument

      public void setTargetDocument(Document target)
      Description copied from interface: Document
      Sets the document (version or live document) to which this proxy points.
      Specified by:
      setTargetDocument in interface Document
    • getPropertyValue

      public Serializable getPropertyValue(String name)
      Description copied from interface: Document
      Gets a simple property value.

      For more generic properties described by an xpath, use Document.getValue(java.lang.String) instead.

      Specified by:
      getPropertyValue in interface Document
      Parameters:
      name - the name of the property to get
      Returns:
      the property value or null if the property is not set
      See Also:
    • setPropertyValue

      public void setPropertyValue(String name, Serializable value)
      Description copied from interface: Document
      Sets a simple property value.

      For more generic properties described by an xpath, use Document.setValue(java.lang.String, java.lang.Object) instead.

      Specified by:
      setPropertyValue in interface Document
      Parameters:
      name - the name of the property to set
      value - the value to set
      See Also:
    • getValue

      public Object getValue(String xpath) throws PropertyException
      Description copied from interface: Document
      Gets a property value.

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

      Specified by:
      getValue in interface Document
      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
    • setValue

      public void setValue(String xpath, Object value) throws PropertyException
      Description copied from interface: Document
      Sets a property value.

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

      Specified by:
      setValue in interface Document
      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
    • visitBlobs

      public void visitBlobs(Consumer<Document.BlobAccessor> blobVisitor) throws PropertyException
      Description copied from interface: Document
      Visits all the blobs of this document and calls the passed blob visitor on each one.
      Specified by:
      visitBlobs in interface Document
      Throws:
      PropertyException
    • replaceBlobDigest

      public String replaceBlobDigest(String key, String newKey, String newDigest)
      Description copied from interface: Document
      Visits the blobs of this document and, for those with a matching key, replace their key and digest with new ones.
      Specified by:
      replaceBlobDigest in interface Document
      Parameters:
      key - the bob key to look for
      newKey - the new key
      newDigest - the new digest
      Returns:
      the old digest if at least one replacement was done, null otherwise
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object other)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • getRetainedProperties

      public String[] getRetainedProperties()
      Description copied from interface: Document
      Gets the retained property xpaths of this document instance at the time it became a record.
      Specified by:
      getRetainedProperties in interface Document
      Returns:
      the retained properties
    • isRetainable

      public boolean isRetainable(String xpath)
      Description copied from interface: Document
      Can the property be put under retention or legal hold.
      Specified by:
      isRetainable in interface Document
      Parameters:
      xpath - the xpath
      Returns:
      true if the property is retainable
    • isRetained

      public boolean isRetained(String xpath)
      Description copied from interface: Document
      Is the property under retention or legal hold.
      Specified by:
      isRetained in interface Document
      Parameters:
      xpath - the xpath
      Returns:
      true if the property is retained and cannot be deleted/edited