public interface Document
Session
.Modifier and Type | Interface and Description |
---|---|
static interface |
Document.BlobAccessor
An accessor that can read or write a blob and know its xpath.
|
static interface |
Document.WriteContext
Context passed to write operations to optionally record things to do at
Document.WriteContext.flush(org.nuxeo.ecm.core.model.Document) time. |
Modifier and Type | Method and Description |
---|---|
Document |
addChild(String name,
String typeName)
Creates a new child document of the given type.
|
boolean |
addFacet(String facet)
Adds a facet to this document.
|
Document |
checkIn(String label,
String checkinComment)
Creates a new version.
|
void |
checkOut() |
void |
followTransition(String transition)
Follows a given life cycle transition.
|
Set<String> |
getAllFacets()
Gets the facets available on this document (from the type and the instance facets).
|
Collection<String> |
getAllowedStateTransitions()
Returns the allowed state transitions for this document.
|
Document |
getBaseVersion()
Gets the version to which a checked in document is linked.
|
String |
getChangeToken()
Gets the current change token for this document.
|
String |
getCheckinComment()
Gets the version check in comment of this document if it's a version or a proxy.
|
Document |
getChild(String name)
Gets a child document given its name.
|
List<Document> |
getChildren()
Gets the children of the document.
|
List<String> |
getChildrenIds()
Gets a list of the children ids.
|
String[] |
getFacets()
Gets the facets defined on this document instance.
|
Document |
getLastVersion()
Gets the last version of this document.
|
String |
getLifeCyclePolicy()
Gets the life cycle policy of this document.
|
String |
getLifeCycleState()
Gets the life cycle state of this document.
|
Lock |
getLock()
Gets the lock if one set on this document.
|
String |
getName()
Gets the name of this document.
|
Document |
getParent()
Gets the parent document, or
null if this is the root document. |
String |
getPath()
Gets the path of this document.
|
Long |
getPos()
Gets the document's position in its containing folder (if ordered).
|
Serializable |
getPropertyValue(String name)
Gets a simple property value.
|
String |
getRepositoryName()
Gets the repository in which the document lives.
|
Session |
getSession()
Gets the session that owns this document.
|
Document |
getSourceDocument()
Gets the source for this document.
|
<T extends Serializable> |
getSystemProp(String name,
Class<T> type)
Gets a system property.
|
Document |
getTargetDocument()
Gets the document (version or live document) to which this proxy points.
|
DocumentType |
getType()
Gets the type of this document.
|
String |
getUUID()
Gets this document's UUID.
|
Object |
getValue(String xpath)
Gets a property value.
|
Document |
getVersion(String label)
Gets a version of this document, given its label.
|
Calendar |
getVersionCreationDate()
Gets the version creation date of this document if it's a version or a proxy.
|
String |
getVersionLabel()
Gets the version label.
|
List<Document> |
getVersions()
Gets the versions for this document.
|
String |
getVersionSeriesId()
Gets the version series id.
|
List<String> |
getVersionsIds()
Gets the list of version ids for this document.
|
Document |
getWorkingCopy()
Gets the working copy for this document.
|
Document.WriteContext |
getWriteContext()
Gets a write context for the current document.
|
boolean |
hasChild(String name)
Checks whether this document has a child of the given name.
|
boolean |
hasChildren()
Tests if the document has any children.
|
boolean |
hasFacet(String facet)
Checks whether this document has a given facet, either from its type or added on the instance.
|
boolean |
isCheckedOut()
Checks whether this document is checked out.
|
boolean |
isFolder()
Checks whether this document is a folder.
|
boolean |
isLatestMajorVersion()
Checks whether this document is the latest major version.
|
boolean |
isLatestVersion()
Checks whether this document is the latest version.
|
boolean |
isMajorVersion()
Checks whether this document is a major version.
|
boolean |
isProxy()
Checks whether or not this document is a proxy.
|
boolean |
isReadOnly()
Checks whether this document is readonly or not.
|
boolean |
isRetentionActive()
Checks whether this document is under active retention.
|
boolean |
isVersion()
Checks whether this document is a version document.
|
boolean |
isVersionSeriesCheckedOut()
Checks if there is a checked out working copy for the version series of this document.
|
void |
markUserChange()
Marks the document as being modified by a user change.
|
void |
orderBefore(String src,
String dest)
Orders the given source child before the destination child.
|
void |
readDocumentPart(DocumentPart dp)
Loads a
DocumentPart from storage. |
void |
remove()
Removes this document and all its children, if any.
|
boolean |
removeFacet(String facet)
Removes a facet from this document.
|
Lock |
removeLock(String owner)
Removes a lock from this document.
|
void |
restore(Document version)
Replaces this document's content with the version specified.
|
void |
setCurrentLifeCycleState(String state)
Sets the life cycle state of this document.
|
void |
setLifeCyclePolicy(String policy)
Sets the life cycle policy of this document.
|
Lock |
setLock(Lock lock)
Sets a lock on this document.
|
void |
setPropertyValue(String name,
Serializable value)
Sets a simple property value.
|
void |
setReadOnly(boolean readonly)
Sets this document as readonly or not.
|
void |
setRetentionActive(boolean retentionActive)
Sets or unsets this document as under active retention.
|
void |
setSystemProp(String name,
Serializable value)
Sets a system property.
|
void |
setTargetDocument(Document target)
Sets the document (version or live document) to which this proxy points.
|
void |
setValue(String xpath,
Object value)
Sets a property value.
|
boolean |
validateUserVisibleChangeToken(String changeToken)
Validates that the passed user-visible change token is compatible with the one for this document.
|
void |
visitBlobs(Consumer<Document.BlobAccessor> blobVisitor)
Visits all the blobs of this document and calls the passed blob visitor on each one.
|
boolean |
writeDocumentPart(DocumentPart dp,
Document.WriteContext writeContext)
Writes a
DocumentPart to storage. |
Session getSession()
Long getPos()
Document getParent()
null
if this is the root document.null
DocumentType getType()
void setPropertyValue(String name, Serializable value)
For more generic properties described by an xpath, use setValue(java.lang.String, java.lang.Object)
instead.
name
- the name of the property to setvalue
- the value to setsetValue(java.lang.String, java.lang.Object)
void setValue(String xpath, Object value) throws PropertyException
The xpath may point to a partial path, in which case the value may be a complex List
or Map
.
xpath
- the xpath of the property to setvalue
- the value to setPropertyException
- if the property does not exist or the value is of the wrong typeSerializable getPropertyValue(String name)
For more generic properties described by an xpath, use getValue(java.lang.String)
instead.
name
- the name of the property to getnull
if the property is not setgetValue(java.lang.String)
Object getValue(String xpath) throws PropertyException
The xpath may point to a partial path, in which case the value may be a complex List
or Map
.
xpath
- the xpath of the property to setnull
if the property is not setPropertyException
- if the property does not existvoid visitBlobs(Consumer<Document.BlobAccessor> blobVisitor) throws PropertyException
PropertyException
boolean isFolder()
true
if the document is a folder, false
otherwisevoid setReadOnly(boolean readonly)
boolean isReadOnly()
void remove()
boolean isRetentionActive()
void setRetentionActive(boolean retentionActive)
String getLifeCycleState()
void setCurrentLifeCycleState(String state)
state
- the life cycle stateString getLifeCyclePolicy()
void setLifeCyclePolicy(String policy)
policy
- the life cycle policyvoid followTransition(String transition) throws LifeCycleException
This will update the life cycle state of the document.
transition
- the name of the transition to followLifeCycleException
Collection<String> getAllowedStateTransitions()
boolean isProxy()
true
if this document is a proxy, false
otherwiseString getRepositoryName()
void setSystemProp(String name, Serializable value)
<T extends Serializable> T getSystemProp(String name, Class<T> type)
String getChangeToken()
boolean validateUserVisibleChangeToken(String changeToken)
false
if the change token is not validvoid markUserChange()
This causes an additional change token increment and check during save.
void readDocumentPart(DocumentPart dp) throws PropertyException
DocumentPart
from storage.
Reading data is done by DocumentPart
because of per-proxy schemas.
PropertyException
Document.WriteContext getWriteContext()
boolean writeDocumentPart(DocumentPart dp, Document.WriteContext writeContext) throws PropertyException
DocumentPart
to storage.
Writing data is done by DocumentPart
because of per-proxy schemas.
true
if something changedPropertyException
Set<String> getAllFacets()
String[] getFacets()
boolean hasFacet(String facet)
facet
- the facet nametrue
if the document has the facetboolean addFacet(String facet)
Does nothing if the facet was already present on the document.
facet
- the facet nametrue
if the facet was added, or false
if it is already presentIllegalArgumentException
- if the facet does not existboolean removeFacet(String facet)
It's not possible to remove a facet coming from the document type.
facet
- the facet nametrue
if the facet was removed, or false
if it isn't present or is present on the type or
does not exitLock setLock(Lock lock)
lock
- the lock to setnull
if locking succeeded, or the existing lock if locking failedLock removeLock(String owner)
the
- owner to check, or null
for no checknull
if there was no lock or if removal succeeded, or a lock if it blocks removal due to owner
mismatchLock getLock()
null
if no lock is setDocument getChild(String name)
Throws DocumentNotFoundException
if the document could not be found.
name
- the name of the child to retrieveDocumentNotFoundException
- if the child does not existList<Document> getChildren()
Returns an empty list for non-folder documents.
List<String> getChildrenIds()
Returns an empty list for non-folder documents.
boolean hasChild(String name)
Returns false
for non-folder documents.
name
- the name of the child to checktrue
if the child exists, false
otherwiseboolean hasChildren()
Returns false
for non-folder documents.
true
if the document has children, false
otherwiseDocument addChild(String name, String typeName)
Throws an error if this document is not a folder.
name
- the name of the new child to createtypeName
- the type of the child to createvoid orderBefore(String src, String dest)
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.
src
- the document to movedest
- the document before which to place the source documentDocument checkIn(String label, String checkinComment)
label
- the version labelcheckinComment
- the checkin commentvoid checkOut()
List<String> getVersionsIds()
List<Document> getVersions()
Document getLastVersion()
Returns null
if there is no version at all.
null
if there is no versionDocument getSourceDocument()
For a version, it's the working copy.
For a proxy, it's the version the proxy points to.
void restore(Document version)
version
- the version to replace withDocument getVersion(String label)
label
- the version labelboolean isVersion()
true
if it's a version, false
otherwiseDocument getBaseVersion()
Returns null
for a checked out document or a version or a proxy.
null
boolean isCheckedOut()
true
if the document is checked out, or false
otherwiseCalendar getVersionCreationDate()
null
if it's not a version or a proxyString getCheckinComment()
null
if it's not a version or a proxyString getVersionSeriesId()
String getVersionLabel()
boolean isLatestVersion()
true
if this is the latest version, or false
otherwiseboolean isMajorVersion()
true
if this is a major version, or false
otherwiseboolean isLatestMajorVersion()
true
if this is the latest major version, or false
otherwiseboolean isVersionSeriesCheckedOut()
true
if there is a checked out working copyDocument getWorkingCopy()
Document getTargetDocument()
void setTargetDocument(Document target)
Copyright © 2018 Nuxeo. All rights reserved.