Interface DocumentModel
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
DeletedDocumentModel
,DocumentModelImpl
,ShallowDocumentModel
,SimpleDocumentModel
The document model is made from several data models, each data model is bound to a schema. All the information about a document (like security) is expressed using schemas (and implicitly data models).
Data models are lazily loaded as they are needed. At document model creation only data models corresponding to the default schemas are loaded. The default schemas are configured in the type manager through extension points.
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic class
Info fetched internally during a refresh. -
Field Summary
Modifier and TypeFieldDescriptionstatic final int
static final int
static final int
static final int
static final int
static final int
static final int
static final int
static final int
static final int
static final int
Deprecated.since 10.1, has no effect.static final int
-
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(PropertyVisitor visitor, Object arg) Method that implement the visitor pattern.boolean
Adds a facet to the document instance.void
attach
(CoreSession coreSession) Reattaches a document to an existing session.checkIn
(VersioningOption option, String checkinComment) Checks in a document and returns the created version.void
checkOut()
Checks out a document.clone()
Clone operation.void
copyContent
(DocumentModel sourceDoc) Copies all the data from a source document.void
copyContextData
(DocumentModel otherDocument) Copies the context data from given document to this document.void
detach
(boolean loadAll) Detaches the documentImpl from its existing session, so that it can survive beyond the session's closing.boolean
followTransition
(String transition) Follows a given life cycle transition.getACP()
Gets the access control policy (ACP) for this document.<T> T
getAdapter
(Class<T> itf) Adapts the document to the given interface.<T> T
getAdapter
(Class<T> itf, boolean refreshCache) Adapts the document to the given interface.Gets the allowed state transitions for this document.Gets the fulltext extracted from the binary fields.Returns a cache key.Gets the current change token for this document.Returns the checkin comment if the document model is a version.Returns the checkin date (the date the version was created) if the document model is a version.Gets the context data associated to this document.getContextData
(String key) Gets the context data using the default scope.Gets the core session to which this document is tied.Returns the life cycle of the document.getDataModel
(String schema) Deprecated.since 8.4, use directProperty
getters insteadDeprecated.since 8.4, use directProperty
getters insteadDeprecated.since 8.4, internal methodGets the document type object.Gets the facets available on this document (from the type and the instance facets).getId()
Gets the document UUID.Returns the life cycle policy of the document.Gets the lock info on the document.getName()
Gets the document name.getObjectResolver
(String xpath) Retrieves the parent reference of the current document.getPath()
Gets the document path.Gets the document path as a string.getPos()
Gets the document's position in its containing folder (if ordered).Gets the principal attached to this document's session.getProperties
(String schemaName) Gets the values from the given data model as a map.getProperty
(String xpath) Gets a property given a xpath.getProperty
(String schemaName, String name) Gets a property from the given schema.getPropertyObject
(String schema, String name) Gets a property object from the given schema.getPropertyObjects
(String schema) Gets theProperty
objects for the given schema.getPropertyValue
(String xpath) Gets a property value given a xpath.getRef()
Gets a reference to the core document that can be used either remotely or locally (opens the core JVM).Returns the name of the repository in which the document is stored.Gets the retained properties of this document at the time it became a record.default Calendar
Gets the retention date for the document.String[]
Gets the schemas available on this document (from the type and the facets).Deprecated.since 11.1Returns the source document identifier.<T extends Serializable>
TgetSystemProp
(String systemProperty, Class<T> type) Gets system property of the specified type.getTitle()
Get a text suitable to be shown in a UI for this document.getType()
Gets the document type name.Returns the version label.Gets the version series id for this document.boolean
Checks if the document has a facet, either from its type or added on the instance.default boolean
Checks if the document has a legal hold set.boolean
Checks if the document has the given schema, either from its type or added on the instance through a facet.boolean
Checks whether this document is attached to a session.boolean
Tests if the document is checked out.boolean
isDirty()
Checks if the document has actual data to write (dirty parts).boolean
Checks if this document can be downloaded.default boolean
Checks if the document is an enforced record.default boolean
Checks if the document is a flexible record.boolean
isFolder()
Checks if this document is a folder.boolean
Checks if this document is immutable.boolean
Checks if a document is the latest major version in the version series.boolean
Checks if a document is the latest version in the version series.boolean
boolean
isLocked()
Tests if the document is locked.boolean
Checks if a document is a major version.boolean
isPrefetched
(String xpath) Deprecated.since 10.1, will always returnfalse
boolean
isPrefetched
(String schemaName, String name) Deprecated.since 10.1, will always returnfalse
boolean
isProxy()
Checks if this document is a proxy.default boolean
isRecord()
Checks if the document is a record.boolean
Checks if this document is in the trash.default boolean
Checks if the document has a retention date in the future or has a legal hold.boolean
Checks if this document is a version.boolean
Checks if this document can have versions.boolean
Checks if there is a checked out working copy for the version series of this document.void
prefetchCurrentLifecycleState
(String lifecycle) Used to set lifecycle state along with prefetching other properties.void
prefetchLifeCyclePolicy
(String lifeCyclePolicy) Used to set lifecycle policy along with prefetching other properties.void
putContextData
(String key, Serializable value) Sets a context data in the default scope.void
refresh()
Same asDocumentModel.refresh(REFRESH_DEFAULT)
.void
Refresh document data from server.boolean
removeFacet
(String facet) Removes a facet from the document instance.Removes the lock on the document.void
reset()
Clears any prefetched or cached document data.void
Sets the ACP for this document model.setLock()
Sets a lock on the document.void
setPathInfo
(String parentPath, String name) Sets path info.void
setProperties
(String schemaName, Map<String, Object> data) Sets values for the given data model.void
setProperty
(String schemaName, String name, Object value) Sets the property value from the given schema.void
setPropertyObject
(Property property) Sets a property object.void
setPropertyValue
(String xpath, Serializable value) Sets a property value given a xpath.
-
Field Details
-
REFRESH_STATE
static final int REFRESH_STATE- See Also:
-
REFRESH_PREFETCH
Deprecated.since 10.1, has no effect.- See Also:
-
REFRESH_ACP_IF_LOADED
static final int REFRESH_ACP_IF_LOADED- See Also:
-
REFRESH_ACP_LAZY
static final int REFRESH_ACP_LAZY- See Also:
-
REFRESH_ACP
static final int REFRESH_ACP- See Also:
-
REFRESH_CONTENT_IF_LOADED
static final int REFRESH_CONTENT_IF_LOADED- See Also:
-
REFRESH_CONTENT_LAZY
static final int REFRESH_CONTENT_LAZY- See Also:
-
REFRESH_CONTENT
static final int REFRESH_CONTENT- See Also:
-
REFRESH_IF_LOADED
static final int REFRESH_IF_LOADED- See Also:
-
REFRESH_LAZY
static final int REFRESH_LAZY- See Also:
-
REFRESH_ALL
static final int REFRESH_ALL- See Also:
-
REFRESH_DEFAULT
static final int REFRESH_DEFAULT- See Also:
-
-
Method Details
-
getDocumentType
DocumentType getDocumentType()Gets the document type object.- Returns:
- the document type object
-
getSessionId
Deprecated.since 11.1Returns the repository name and principal when the document is attached. -
getPrincipal
NuxeoPrincipal getPrincipal()Gets the principal attached to this document's session.- Returns:
- the principal
- Since:
- 11.1
-
getCoreSession
CoreSession getCoreSession()Gets the core session to which this document is tied.This may be null if the document has been detached from a session.
- Returns:
- the core session
- Since:
- 5.2.GA
-
detach
void detach(boolean loadAll) Detaches the documentImpl from its existing session, so that it can survive beyond the session's closing.- Parameters:
loadAll
- iftrue
, load all data and ACP from the session before detaching- Since:
- 5.6
-
attach
Reattaches a document to an existing session.- Parameters:
coreSession
- the session to attach to- Since:
- 11.1
-
isAttached
boolean isAttached()Checks whether this document is attached to a session.- Returns:
true
if the document is attached to a session- Since:
- 11.1
-
getRef
DocumentRef getRef()Gets a reference to the core document that can be used either remotely or locally (opens the core JVM).- Returns:
- the document reference
-
getParentRef
DocumentRef getParentRef()Retrieves the parent reference of the current document.- Returns:
- the parent reference or null if no parent
-
getId
String getId()Gets the document UUID.- Returns:
- the document UUID
-
getName
String getName()Gets the document name.- Returns:
- the document name
-
getPos
Long getPos()Gets the document's position in its containing folder (if ordered).- Returns:
- the position, or
null
if the containing folder is not ordered - Since:
- 6.0
-
getTitle
String getTitle()Get a text suitable to be shown in a UI for this document.- Returns:
- the title or the internal name if no title could be found
-
getPathAsString
String getPathAsString()Gets the document path as a string.- Returns:
- the document path as string
-
getPath
Path getPath()Gets the document path.- Returns:
- the document path as string
-
getType
String getType()Gets the document type name.- Returns:
- the document type name
-
getSchemas
String[] getSchemas()Gets the schemas available on this document (from the type and the facets).- Returns:
- the schemas
- Since:
- 5.4.2
-
hasSchema
Checks if the document has the given schema, either from its type or added on the instance through a facet.- Parameters:
schema
- the schema name- Returns:
true
if the document has the schema
-
getFacets
Gets the facets available on this document (from the type and the instance facets).- Returns:
- the facets
- Since:
- 5.4.2
-
hasFacet
Checks if the document has a facet, either from its type or added on the instance.- Parameters:
facet
- the facet name- Returns:
true
if the document has the facet
-
addFacet
Adds a facet to the document instance.Does nothing if the facet was already present on the document.
- Parameters:
facet
- the facet name- Returns:
true
if the facet was added, orfalse
if it is already present- Throws:
IllegalArgumentException
- if the facet does not exist- Since:
- 5.4.2
-
removeFacet
Removes a facet from the document instance.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, orfalse
if it isn't present or is present on the type or does not exit- Since:
- 5.4.2
-
getDataModelsCollection
Deprecated.since 8.4, internal methodINTERNAL, not for public use.Gets a list with the currently fetched data models.
- Returns:
- the data models that are already fetched as a collection
- See Also:
-
getDataModels
Deprecated.since 8.4, use directProperty
getters insteadGets the data models.- Returns:
- the data models that are already fetched.
- See Also:
-
getDataModel
Deprecated.since 8.4, use directProperty
getters insteadGets the data model corresponding to the given schema.Null is returned if the document type has no such schema.
- Parameters:
schema
- the schema name- Returns:
- the data model or null if no such schema is supported
- See Also:
-
setPathInfo
Sets path info.path and ref attributes will be set according to info
-
isLocked
boolean isLocked()Tests if the document is locked.Lock info is cached on the document for performance. Use
CoreSession.getLockInfo(org.nuxeo.ecm.core.api.DocumentRef)
to get the non-cached status.- Returns:
- the lock key if the document is locked or null otherwise
-
setLock
Sets a lock on the document.- Returns:
- the lock info that was set
- Throws:
LockException
- if the document is already locked- Since:
- 5.4.2
-
getLockInfo
Lock getLockInfo()Gets the lock info on the document.Lock info is cached on the document for performance. Use
CoreSession.getLockInfo(org.nuxeo.ecm.core.api.DocumentRef)
to get the non-cached status.- Returns:
- the lock info if the document is locked, or
null
otherwise - Since:
- 5.4.2
-
removeLock
Removes the lock on the document.The caller principal should be the same as the one who set the lock or to belongs to the administrator group, otherwise an exception will be throw.
If the document was not locked, does nothing.
Returns the previous lock info.
- Returns:
- the removed lock info, or
null
if there was no lock - Throws:
LockException
- if the document is locked by someone else- Since:
- 5.4.2
-
isCheckedOut
boolean isCheckedOut()Tests if the document is checked out.A checked out document can be modified normally. A checked in document is identical to the last version that it created, and not modifiable.
Only applicable to documents that are live (not versions and not proxies).
- Returns:
true
if the document is checked out,false
if it is checked in- Since:
- 5.4
-
checkOut
void checkOut()Checks out a document.A checked out document can be modified normally.
Only applicable to documents that are live (not versions and not proxies).
- Since:
- 5.4
-
checkIn
Checks in a document and returns the created version.A checked in document is identical to the last version that it created, and not modifiable.
Only applicable to documents that are live (not versions and not proxies).
- Parameters:
option
- whether to do create a newVersioningOption.MINOR
orVersioningOption.MAJOR
version during check incheckinComment
- the checkin comment- Returns:
- the version just created
- Since:
- 5.4
-
getVersionLabel
String getVersionLabel()Returns the version label.The label returned is computed by the VersioningService.
- Returns:
- the version label, or
null
-
getCheckinComment
String getCheckinComment()Returns the checkin comment if the document model is a version.- Returns:
- the checkin comment, or
null
- Since:
- 5.4
-
getCheckinDate
Calendar getCheckinDate()Returns the checkin date (the date the version was created) if the document model is a version.- Returns:
- the checkin date, or
null
- Since:
- 2023
-
getVersionSeriesId
String getVersionSeriesId()Gets the version series id for this document.All documents and versions derived by a check in or checkout from the same original document share the same version series id.
- Returns:
- the version series id
- Since:
- 5.4
-
isLatestVersion
boolean isLatestVersion()Checks if a document is the latest version in the version series.- Since:
- 5.4
-
isMajorVersion
boolean isMajorVersion()Checks if a document is a major version.- Since:
- 5.4
-
isLatestMajorVersion
boolean isLatestMajorVersion()Checks if a document is the latest major version in the version series.- Since:
- 5.4
-
isVersionSeriesCheckedOut
boolean isVersionSeriesCheckedOut()Checks if there is a checked out working copy for the version series of this document.- Since:
- 5.4
-
isRecord
default boolean isRecord()Checks if the document is a record.- Returns:
true
if the document is a record,false
otherwise- Since:
- 11.1
-
isEnforcedRecord
default boolean isEnforcedRecord()Checks if the document is an enforced record.- Returns:
true
if the document is an enforced record,false
otherwise- Since:
- 2023.1
-
isFlexibleRecord
default boolean isFlexibleRecord()Checks if the document is a flexible record.- Returns:
true
if the document is a flexible record,false
otherwise- Since:
- 2023.1
-
getRetainedProperties
Gets the retained properties of this document at the time it became a record.- Returns:
- the retained properties
- Since:
- 2021.32
-
getRetainUntil
Gets the retention date for the document.- Returns:
- the retention date, or "SetRetention" for a
retention in the indeterminate future, or
null
if there is no retention date - Since:
- 11.1
- See Also:
-
hasLegalHold
default 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:
-
isUnderRetentionOrLegalHold
default 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:
-
getACP
ACP getACP()Gets the access control policy (ACP) for this document.Returns null if no security was defined on this document.
The ACP can be used to introspect or to evaluate user privileges on this document.
This is a wrapper for
CoreSession.getACP(DocumentRef)
but it is recommended since it caches the ACP for later usage.- Returns:
- the security data model or null if none
-
setACP
Sets the ACP for this document model.This is a wrapper for
CoreSession.setACP(DocumentRef, ACP, boolean)
- Parameters:
acp
- the ACP to setoverwrite
- whether to overwrite the old ACP or not- See Also:
-
getProperty
Gets a property from the given schema.The data model owning the property will be fetched from the server if not already fetched.
- Parameters:
schemaName
- the schema namename
- the property name- Returns:
- the property value or null if no such property exists
-
getPropertyObject
Gets a property object from the given schema.- Parameters:
schema
- the schema namename
- the property name- Returns:
- the property, or
null
if no such property exists - Since:
- 8.4
-
setPropertyObject
Sets a property object.- Parameters:
property
- the property object- Since:
- 2023.0
-
setProperty
Sets the property value from the given schema.This operation will not fetch the data model if not already fetched
- Parameters:
schemaName
- the schema namename
- the property namevalue
- the property value
-
getProperties
Gets the values from the given data model as a map.The operation will fetch the data model from the server if not already fetched.
- Parameters:
schemaName
- the data model schema name- Returns:
- the values map
-
setProperties
Sets values for the given data model.This will not fetch the data model if not already fetched.
- Parameters:
schemaName
- the schema namedata
- the values to set
-
isTrashed
boolean isTrashed()Checks if this document is in the trash.- Returns:
- true if the document is in the trash, false otherwise.
- Since:
- 10.1
-
isFolder
boolean isFolder()Checks if this document is a folder.- Returns:
- true if the document is a folder, false otherwise
-
isVersionable
boolean isVersionable()Checks if this document can have versions.- Returns:
- true if the document can have versions, false otherwise
-
isDownloadable
boolean isDownloadable()Checks if this document can be downloaded.- Returns:
- true if the document has downloadable content, false otherwise
-
isVersion
boolean isVersion()Checks if this document is a version.- Returns:
- true if the document is an older version of another document, false otherwise
-
isProxy
boolean isProxy()Checks if this document is a proxy.- Returns:
- true if the document is a proxy false otherwise
-
isImmutable
boolean isImmutable()Checks if this document is immutable.- Returns:
true
if the document is a version or a proxy to a version,false
otherwise- Since:
- 1.6.1 (5.3.1)
-
isDirty
boolean isDirty()Checks if the document has actual data to write (dirty parts).- Since:
- 5.5
-
accept
Method that implement the visitor pattern.The visitor must return null to stop visiting children otherwise a context object that will be passed as the arg argument to children
- Parameters:
visitor
- the visitor to acceptarg
- an argument passed to the visitor. This should be used by the visitor to carry on the visiting context.- Since:
- 5.5
-
getAdapter
Adapts the document to the given interface.Attention, the first computation will cache the adaptation result for later calls.
- Type Parameters:
T
- the interface type to adapt to- Parameters:
itf
- the interface class- Returns:
- the adapted document
-
getAdapter
Adapts the document to the given interface.- Type Parameters:
T
- the interface type to adapt to- Parameters:
itf
- the interface classrefreshCache
- : readapt and stores in cache if already exists.- Returns:
- the adapted document
-
getCurrentLifeCycleState
String getCurrentLifeCycleState()Returns the life cycle of the document.- Returns:
- the life cycle as a string
- Implementation Note:
- See org.nuxeo.ecm.core.lifecycle package
-
getLifeCyclePolicy
String getLifeCyclePolicy()Returns the life cycle policy of the document.- Returns:
- the life cycle policy
- Implementation Note:
- See org.nuxeo.ecm.core.lifecycle package
-
followTransition
Follows a given life cycle transition.This will update the current life cycle of the document.
- Parameters:
transition
- the name of the transition to follow- Returns:
- a boolean representing the status if the operation
-
getAllowedStateTransitions
Collection<String> getAllowedStateTransitions()Gets the allowed state transitions for this document.- Returns:
- a collection of state transitions as string
-
getContextData
Map<String,Serializable> getContextData()Gets the context data associated to this document.- Returns:
- a map of context data
-
getContextData
Gets the context data using the default scope.- Parameters:
key
- the context data key- Returns:
- the value
-
putContextData
Sets a context data in the default scope.- Parameters:
key
- the context data keyvalue
- the value
-
copyContextData
Copies the context data from given document to this document. -
copyContent
Copies all the data from a source document. -
getRepositoryName
String getRepositoryName()Returns the name of the repository in which the document is stored.- Returns:
- the repository name as a string.
-
getCacheKey
String getCacheKey()Returns a cache key.Cache key will be computed like this :
docUUID + "-" + sessionId + "-" + timestamp
We will use the last modification time if present for the timestamp.
Since 5.6, the timestamp does not hold milliseconds anymore as some databases do not store them, which could interfere with cache key comparisons.
- Returns:
- the cache key as a string
-
getSourceId
String getSourceId()Returns the source document identifier.This is useful when not interested about the repository UUID itself. Technically, this is the current version UUID.
- Returns:
- the source id as a string.
-
isPrefetched
Deprecated.since 10.1, will always returnfalse
Checks if a property is prefetched.- Parameters:
xpath
- the property xpath- Returns:
true
if it is prefetched- Since:
- 5.5
-
isPrefetched
Deprecated.since 10.1, will always returnfalse
Checks if a property is prefetched.- Parameters:
schemaName
- the schema namename
- the property name- Returns:
true
if it is prefetched- Since:
- 5.5
-
prefetchCurrentLifecycleState
Used to set lifecycle state along with prefetching other properties. -
prefetchLifeCyclePolicy
Used to set lifecycle policy along with prefetching other properties. -
isLifeCycleLoaded
boolean isLifeCycleLoaded() -
getSystemProp
Gets system property of the specified type. This is not a lazy loaded property, thus the request is made directly to the server. This is needed as some critical system properties might be changed directly in the core. -
getPropertyObjects
Gets theProperty
objects for the given schema.An empty list is returned if the document doesn't have the schema.
- Parameters:
schema
- the schema- Returns:
- the properties
- Since:
- 8.4
-
getProperty
Gets a property given a xpath.Note that what's called xpath in this context is not an actual XPath as specified by the w3c. Main differences are that in our xpath:
- Indexes start at 0 instead of 1
- You can express
foo/bar[i]/baz
asfoo/i/baz
- Throws:
PropertyException
-
getPropertyValue
Gets a property value given a xpath.Note that what's called xpath in this context is not an actual XPath as specified by the w3c. Main differences are that in our xpath:
- Indexes start at 0 instead of 1
- You can express
foo/bar[i]/baz
asfoo/i/baz
- Throws:
PropertyException
-
setPropertyValue
Sets a property value given a xpath.- Throws:
PropertyException
-
reset
void reset()Clears any prefetched or cached document data.This will force the document to lazily update its data when required.
-
refresh
Refresh document data from server.The data models will be removed and all prefetch and system data will be refreshed from the server
The refreshed data contains:
- document life cycle
- document lock state, acp if required
- acp if required - otherwise acp info will be cleared so that it will be refetched in lazy way
- document parts if required - otherwise parts data will be removed to be refreshed lazy
REFRESH_STATE
REFRESH_ACP_IF_LOADED
REFRESH_ACP_LAZY
REFRESH_ACP
REFRESH_CONTENT_IF_LOADED
REFRESH_CONTENT_LAZY
REFRESH_CONTENT
REFRESH_DEFAULT
same as REFRESH_STATE | REFRESH_DEFAULT | REFRESH_ACP_IF_LOADED | REFRESH_CONTENT_IF_LOADEDREFRESH_ALL
same as REFRESH_STATE | REFRESH_PREFTECH | REFRESH_ACP | REFRESH_CONTENT
- Parameters:
refreshFlags
- the refresh flagsschemas
- the document parts (schemas) that should be refreshed now
-
refresh
void refresh()Same asDocumentModel.refresh(REFRESH_DEFAULT)
. -
clone
Clone operation. Must be made public instead of just protected as in Object.- Throws:
CloneNotSupportedException
-
getChangeToken
String getChangeToken()Gets the current change token for this document.The change token is an opaque string which is modified every time the document is changed.
Before saving a document through
CoreSession.saveDocument(org.nuxeo.ecm.core.api.DocumentModel)
it's possible to pass an expected change token in the document context data throughdoc.putContextData(CoreSession.CHANGE_TOKEN, expectedChangeToken)
. If the change token does not match the stored one, it means that a concurrent update happened, and aConcurrentUpdateException
will be thrown.- Returns:
- the change token
- Since:
- 5.5
- See Also:
-
getBinaryFulltext
Gets the fulltext extracted from the binary fields.- Since:
- 5.9.3
-
getObjectResolver
- Parameters:
xpath
- the property xpath- Returns:
- A
PropertyObjectResolver
to manage the property reference to external entities, null if this property's type has no resolver. - Since:
- 7.1
-