|
Nuxeo Enterprise Platform 5.4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.nuxeo.ecm.core.model.MockDocument
public class MockDocument
| Field Summary | |
|---|---|
boolean |
checkedout
|
String |
creator
|
Lock |
lock
|
String |
uuid
|
| Constructor Summary | |
|---|---|
MockDocument(String uuid,
String creator)
|
|
| Method Summary | ||
|---|---|---|
Document |
addChild(String name,
String typeName)
Creates a new child document given its typename. |
|
boolean |
addFacet(String facet)
Adds a facet to the document instance. |
|
Document |
checkIn(String label,
String description)
Creates a new version. |
|
void |
checkOut()
|
|
Map<String,Object> |
exportFlatMap(String[] schemas)
Exports a flat view of properties in this document. |
|
Map<String,Object> |
exportMap(String schemaName)
|
|
Map<String,Map<String,Object>> |
exportMap(String[] schemas)
Exports the properties belonging to the given schemas as a java Map. |
|
boolean |
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. |
|
boolean |
getBoolean(String name)
Gets the value of a scalar property as a boolean. |
|
String |
getCheckinComment()
|
|
Document |
getChild(String name)
Gets a child document given its name. |
|
Iterator<Document> |
getChildren()
Gets an iterator over the children of the document. |
|
DocumentIterator |
getChildren(int start)
|
|
List<String> |
getChildrenIds()
Gets a list of the children ids. |
|
Blob |
getContent(String name)
Gets the value of the named content property. |
|
Calendar |
getDate(String name)
Gets the value of a scalar property as a date. |
|
List<String> |
getDirtyFields()
Returns fields that were modified. |
|
double |
getDouble(String name)
Gets the value of a scalar property as a double. |
|
String[] |
getFacets()
Gets the facets defined on this document instance. |
|
Calendar |
getLastModified()
Gets the last modification time on this document. |
|
Document |
getLastVersion()
Gets the last version of this document. |
|
String |
getLifeCyclePolicy()
Returns the life cycle policy of this document. |
|
String |
getLifeCycleState()
Returns the life cycle of the document. |
|
Lock |
getLock()
Gets the lock key if a lock exists on the current object. |
|
long |
getLong(String name)
Gets the value of a scalar property as a long. |
|
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. |
|
Collection<Property> |
getProperties()
Gets the collection of the sub properties in this container. |
|
Property |
getProperty(String name)
Gets a property given its name. |
|
Iterator<Property> |
getPropertyIterator()
Gets an iterator over all existing properties in this container. |
|
Object |
getPropertyValue(String name)
Generic method to retrieve a property value. |
|
Repository |
getRepository()
Returns the repository in which the document lives. |
|
Session |
getSession()
Gets the session that owns this document. |
|
Document |
getSourceDocument()
Gets the head ("live") version of this document. |
|
String |
getString(String name)
Gets the value of a scalar property as a string. |
|
|
getSystemProp(String name,
Class<T> type)
Get system property of the specified type. |
|
DocumentType |
getType()
Gets this document's type. |
|
String |
getUUID()
Gets this document's UUID. |
|
Document |
getVersion(String label)
Gets a version of this document, given its label. |
|
Calendar |
getVersionCreationDate()
|
|
String |
getVersionLabel()
|
|
List<Document> |
getVersions()
|
|
String |
getVersionSeriesId()
Gets the version series id. |
|
List<String> |
getVersionsIds()
Gets the list of version ids for this document. |
|
Document |
getWorkingCopy()
|
|
boolean |
hasChild(String name)
Tests if the document has the named child. |
|
boolean |
hasChildren()
Tests if the document has any children. |
|
boolean |
hasFacet(String facet)
Checks if the document has a facet, either from its type or added on the instance. |
|
boolean |
hasVersions()
Tells the caller if this document has versions or not. |
|
void |
importFlatMap(Map<String,Object> map)
Imports a flat map of properties into this document. |
|
void |
importMap(Map<String,Map<String,Object>> map)
Imports the tree properties from the given Java Map. |
|
boolean |
isCheckedOut()
|
|
boolean |
isFolder()
Tests whether this document represent a folder or a leaf document. |
|
boolean |
isLatestMajorVersion()
|
|
boolean |
isLatestVersion()
|
|
boolean |
isMajorVersion()
|
|
boolean |
isPropertySet(String path)
Tests whether the property at the given path exists (the property may be either a scalar or a composite one). |
|
boolean |
isProxy()
Checks whether or not this doc is a proxy document. |
|
boolean |
isVersion()
Checks whether or not this doc is a version document. |
|
boolean |
isVersionSeriesCheckedOut()
|
|
void |
orderBefore(String src,
String dest)
Orders the given source child before the destination child. |
|
void |
readDocumentPart(DocumentPart dp)
Load document part properties from storage and fill them inside the given document part. |
|
void |
remove()
Removes this document and all its children, if any. |
|
void |
removeChild(String name)
Removes the child having the given name |
|
boolean |
removeFacet(String facet)
Removes a facet from the document instance. |
|
Lock |
removeLock(String owner)
Removes a lock on the current document. |
|
void |
removeProperty(String name)
Removes the property with the given name. |
|
Document |
resolvePath(String relPath)
Resolves a document given its relative path to the current document. |
|
void |
restore(Document version)
Replaces current version with version specified. |
|
void |
save()
Saves any modification done on this document or its children. |
|
void |
setBoolean(String name,
boolean value)
Sets the scalar property value to the given boolean value. |
|
void |
setContent(String name,
Blob value)
Sets the content property to the given value. |
|
void |
setCurrentLifeCycleState(String state)
Sets the lifecycle state of the document. |
|
void |
setDate(String name,
Calendar value)
Sets the scalar property value to the given date value. |
|
void |
setDouble(String name,
double value)
Set the scalar property value to the given double value. |
|
void |
setLifeCyclePolicy(String policy)
Sets the life cycle policy of this document. |
|
Lock |
setLock(Lock lock)
Sets a lock on the current document. |
|
void |
setLong(String name,
long value)
Sets the scalar property value to the given long value. |
|
void |
setPropertyValue(String name,
Object value)
Generic method to set a property value. |
|
void |
setString(String name,
String value)
Sets the scalar property value to the given string value. |
|
|
setSystemProp(String name,
T value)
Set a system property which is a property of by the built-in node type ECM_SYSTEM_ANY. |
|
void |
writeDocumentPart(DocumentPart dp)
Read modifications in the given document part and write them on storage. |
|
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public String uuid
public String creator
public Lock lock
public boolean checkedout
| Constructor Detail |
|---|
public MockDocument(String uuid,
String creator)
| Method Detail |
|---|
public String getName()
throws DocumentException
Document
getName in interface DocumentDocumentException - if any exception occurredpublic String getUUID()
Document
getUUID in interface Documentpublic Session getSession()
Document
getSession in interface Documentpublic DocumentType getType()
Document
getType in interface Document
public String getPath()
throws DocumentException
Document
getPath in interface DocumentDocumentExceptionpublic Repository getRepository()
Document
getRepository in interface Documentpublic void setLifeCyclePolicy(String policy)
Document
setLifeCyclePolicy in interface Documentpolicy - the policypublic void setCurrentLifeCycleState(String state)
Document
setCurrentLifeCycleState in interface Documentstate - the state
public boolean followTransition(String transition)
throws LifeCycleException
DocumentThis will update the current life cycle of the document.
followTransition in interface Documenttransition - the name of the transition to follow
LifeCycleException
public Collection<String> getAllowedStateTransitions()
throws LifeCycleException
Document
getAllowedStateTransitions in interface DocumentLifeCycleException
public Document getBaseVersion()
throws DocumentException
VersionableDocument
Returns null for a checked out document or a version or a proxy.
getBaseVersion in interface VersionableDocumentnull
DocumentException
public String getLifeCycleState()
throws LifeCycleException
Document
getLifeCycleState in interface DocumentLifeCycleExceptionorg.nuxeo.ecm.core.lifecycle
public Calendar getLastModified()
throws DocumentException
Document
getLastModified in interface DocumentDocumentException
public String getLifeCyclePolicy()
throws LifeCycleException
Document
getLifeCyclePolicy in interface DocumentLifeCycleException
public Document getParent()
throws DocumentException
Document
getParent in interface DocumentDocumentException
public <T extends Serializable> T getSystemProp(String name,
Class<T> type)
throws DocumentException
Document
getSystemProp in interface DocumentDocumentExceptionpublic boolean isFolder()
Document
isFolder in interface Documentpublic boolean isProxy()
Document
isProxy in interface Document
public void remove()
throws DocumentException
Document
remove in interface DocumentDocumentException - if an error occurs
public void save()
throws DocumentException
DocumentFor some implementations this may do nothing if they are commiting modifications as they are done by calling the corresponding method.
save in interface DocumentDocumentException - if an error occurs
public <T extends Serializable> void setSystemProp(String name,
T value)
throws DocumentException
Document
setSystemProp in interface DocumentDocumentException
public Document checkIn(String label,
String description)
throws DocumentException
VersionableDocument
checkIn in interface VersionableDocumentlabel - the version labeldescription - the checkin comment
DocumentException
public void checkOut()
throws DocumentException
checkOut in interface VersionableDocumentDocumentException
public Document getLastVersion()
throws DocumentException
VersionableDocument
getLastVersion in interface VersionableDocumentDocumentException
public Document getSourceDocument()
throws DocumentException
VersionableDocument
getSourceDocument in interface VersionableDocumentDocumentException
public List<String> getVersionsIds()
throws DocumentException
VersionableDocument
getVersionsIds in interface VersionableDocumentDocumentException
public Document getVersion(String label)
throws DocumentException
VersionableDocument
getVersion in interface VersionableDocumentlabel - the version label
DocumentException
public List<Document> getVersions()
throws DocumentException
getVersions in interface VersionableDocumentDocumentException
public boolean hasVersions()
throws DocumentException
VersionableDocumentNeeded to know if we need to use checkin/checkout methods when changing a document.
hasVersions in interface VersionableDocumentDocumentException
public boolean isCheckedOut()
throws DocumentException
isCheckedOut in interface VersionableDocumentDocumentExceptionpublic boolean isVersion()
VersionableDocument
isVersion in interface VersionableDocument
public String getVersionSeriesId()
throws DocumentException
VersionableDocument
getVersionSeriesId in interface VersionableDocumentDocumentException
public void restore(Document version)
throws DocumentException
VersionableDocument
restore in interface VersionableDocumentversion - the version to replace with
DocumentException
public Document addChild(String name,
String typeName)
throws DocumentException
DocumentContainerThis operation throws an error if the current document is not a folder.
addChild in interface DocumentContainername - the name of the new child to createtypeName - the type of the child to create
DocumentException
public Document getChild(String name)
throws DocumentException
DocumentContainerThrows an exception if the document could not be found.
If the supplied name is null, returns the default child of the document if any, otherwise raises an exception.
getChild in interface DocumentContainername - the name of the child to retrieve
DocumentException
public Iterator<Document> getChildren()
throws DocumentException
DocumentContainerThis operation silently ignores non-folder documents: if the document is not a folder then it returns an empty iterator.
getChildren in interface DocumentContainerDocumentException
public DocumentIterator getChildren(int start)
throws DocumentException
getChildren in interface DocumentContainerDocumentException
public List<String> getChildrenIds()
throws DocumentException
DocumentContainer
getChildrenIds in interface DocumentContainerDocumentException
public boolean hasChild(String name)
throws DocumentException
DocumentContainerThis operation silently ignores non-folder documents: If the document is not a folder then return false.
hasChild in interface DocumentContainername - the name of the child to test
DocumentException
public boolean hasChildren()
throws DocumentException
DocumentContainerThis operation silently ignores non-folder documents: If the document is not a folder then returns false.
hasChildren in interface DocumentContainerDocumentException
public void removeChild(String name)
throws DocumentException
DocumentContainerIf this is not a folder does nothing.
If this is a folder and no child exists with the given name then throws an exception
removeChild in interface DocumentContainername - the child name
DocumentException
public Document resolvePath(String relPath)
throws DocumentException
DocumentContainerIf the path is absolute then it will be transformed in a relative path (i.e. the leading '/' removed).
resolvePath in interface DocumentContainerrelPath - the path relative to this document
DocumentException
public Map<String,Object> exportFlatMap(String[] schemas)
throws DocumentException
PropertyContainerIf the given schemas array is null then all schemas will be exported.
exportFlatMap in interface PropertyContainerDocumentException - if any error occurs
public Map<String,Object> exportMap(String schemaName)
throws DocumentException
exportMap in interface PropertyContainerDocumentException
public Map<String,Map<String,Object>> exportMap(String[] schemas)
throws DocumentException
PropertyContainerIf the given schemas array is null then all schemas will be exported
The properties are grouped by schemas
The property tree is recursively traversed and all property in that schema exported as entry of the Map
exportMap in interface PropertyContainerDocumentException - if any error occurs
public boolean getBoolean(String name)
throws DocumentException
PropertyContainerboolean.
This is a shortcut for getScalar(name).getBoolean()
getBoolean in interface PropertyContainerDocumentException - if any error occursSimpleProperty#getBoolean()};
public Blob getContent(String name)
throws DocumentException
PropertyContainer
getContent in interface PropertyContainerDocumentException - if any error occurs
public Calendar getDate(String name)
throws DocumentException
PropertyContainerdate.
This is a shortcut for getScalar(name).getDate()
getDate in interface PropertyContainerDocumentException - if any error occursSimpleProperty#getDate()};public List<String> getDirtyFields()
PropertyContainerXXX AT: compatibility method for NXP-666
getDirtyFields in interface PropertyContainer
public double getDouble(String name)
throws DocumentException
PropertyContainerdouble.
This is a shortcut for getScalar(name).getDouble()
getDouble in interface PropertyContainerDocumentException - if any error occursSimpleProperty#getDouble()};
public long getLong(String name)
throws DocumentException
PropertyContainerlong.
This is a shortcut for getScalar(name).getLong()
getLong in interface PropertyContainerDocumentException - if any error occursSimpleProperty#getLong()};
public Collection<Property> getProperties()
throws DocumentException
PropertyContainerThe returned properties are existing.
getProperties in interface PropertyContainerDocumentException - if any error occurs
public Property getProperty(String name)
throws DocumentException
PropertyContainerIf the named property is specified by schema of the container object this method will always return a property object even if the property was not yet set (doesn't exists).
In this case the method Property.isNull() of the returned
property will return true. If the property is not specified by any
container schema the NoSuchPropertyException will be thrown
returns non null even if the property corresponding to that name was not
previously set. The returned object is a scalar, composite or list
property.
getProperty in interface PropertyContainername - the property name to retrieve
DocumentException - if any error occurs
public Iterator<Property> getPropertyIterator()
throws DocumentException
PropertyContainerThe returned properties are existing.
getPropertyIterator in interface PropertyContainerDocumentException - if any error occurs
public Object getPropertyValue(String name)
throws DocumentException
PropertyContainer
This is a shortcut for getProperty(String).getValue()
getPropertyValue in interface PropertyContainername - the name of the property to set
null if the property is not
set.
DocumentException - if any error occursfor the list of supported value
objects
public String getString(String name)
throws DocumentException
PropertyContainerstring.
This is a shortcut for getScalar(name).getString()
getString in interface PropertyContainerDocumentException - if any error occursSimpleProperty#getString()};
public void importFlatMap(Map<String,Object> map)
throws DocumentException
PropertyContainer
importFlatMap in interface PropertyContainerDocumentException - if any error occurs
public void importMap(Map<String,Map<String,Object>> map)
throws DocumentException
PropertyContainerThe property tree is recursively traversed and all property exported as entry of the Map.
importMap in interface PropertyContainerDocumentException - if any error occurs
public boolean isPropertySet(String path)
throws DocumentException
PropertyContainer
isPropertySet in interface PropertyContainerpath - the path to test
DocumentException - if any error occurs
public void removeProperty(String name)
throws DocumentException
PropertyContainer
removeProperty in interface PropertyContainername - the property to remove
DocumentException - if any error occurs
public void setBoolean(String name,
boolean value)
throws DocumentException
PropertyContainerIf the property with that name doesn't exists, it will be created.
This is a shortcut to create or set boolean properties.
setBoolean in interface PropertyContainerDocumentException - if any error occursSimpleProperty#setBoolean(boolean)}
public void setContent(String name,
Blob value)
throws DocumentException
PropertyContainerIf the property with that name doesn't exists, it will be created
setContent in interface PropertyContainerDocumentException - if any error occurs
public void setDate(String name,
Calendar value)
throws DocumentException
PropertyContainerIf the property with that name doesn't exists, it will be created
This is a shortcut to create or set date properties.
setDate in interface PropertyContainerDocumentException - if any error occursSimpleProperty#setDate(Calendar)}
public void setDouble(String name,
double value)
throws DocumentException
PropertyContainerIf the property with that name doesn't exists, it will be created.
This is a shortcut to create or set double properties
setDouble in interface PropertyContainerDocumentException - if any error occursSimpleProperty#setDouble(double)}
public void setLong(String name,
long value)
throws DocumentException
PropertyContainerIf the property with that name doesn't exists, it will be created.
This is a shortcut to create or set long properties.
setLong in interface PropertyContainerDocumentException - if any error occursSimpleProperty#setLong(long)}
public void setPropertyValue(String name,
Object value)
throws DocumentException
PropertyContainer
This is a shortcut for getProperty(String).setValue(Object)
The following type of objects can be used as values depending on the property type:
String - for string properties
Boolean - for boolean properties
Number - for numeric (long and double) properties
Calendar - for date properties
ContentSource - for content properties
setPropertyValue in interface PropertyContainername - the name of the property to setvalue - the value to set
DocumentException - if any error occurs
public void setString(String name,
String value)
throws DocumentException
PropertyContainerIf the property with that name doesn't exists, it will be created.
This is a shortcut to create or set string properties.
setString in interface PropertyContainerDocumentException - if any error occursSimpleProperty#setString(String)}
public Lock getLock()
throws DocumentException
Lockable
getLock in interface LockableDocumentException
public Lock setLock(Lock lock)
throws DocumentException
Lockable
setLock in interface Lockablelock - the lock to set
DocumentException
public Lock removeLock(String owner)
throws DocumentException
Lockable
removeLock in interface Lockablenull if there was no lock or if removal succeeded, or a
lock if it blocks removal due to owner mismatch
DocumentException
public void readDocumentPart(DocumentPart dp)
throws Exception
Document
readDocumentPart in interface DocumentException
public void writeDocumentPart(DocumentPart dp)
throws Exception
Document
writeDocumentPart in interface DocumentException
public void orderBefore(String src,
String dest)
throws DocumentException
DocumentContainer
orderBefore in interface DocumentContainersrc - the document to movedest - the document before which to place the source document
DocumentException - if this document is not an orderable folder or any other exception occurs
public Calendar getVersionCreationDate()
throws DocumentException
getVersionCreationDate in interface VersionableDocumentDocumentException
public String getVersionLabel()
throws DocumentException
getVersionLabel in interface VersionableDocumentDocumentException
public boolean isLatestVersion()
throws DocumentException
isLatestVersion in interface VersionableDocumentDocumentException
public boolean isMajorVersion()
throws DocumentException
isMajorVersion in interface VersionableDocumentDocumentException
public boolean isLatestMajorVersion()
throws DocumentException
isLatestMajorVersion in interface VersionableDocumentDocumentException
public boolean isVersionSeriesCheckedOut()
throws DocumentException
isVersionSeriesCheckedOut in interface VersionableDocumentDocumentException
public Document getWorkingCopy()
throws DocumentException
getWorkingCopy in interface VersionableDocumentDocumentException
public String getCheckinComment()
throws DocumentException
getCheckinComment in interface VersionableDocumentDocumentExceptionpublic Set<String> getAllFacets()
Document
getAllFacets in interface Documentpublic String[] getFacets()
Document
getFacets in interface Documentpublic boolean hasFacet(String facet)
Document
hasFacet in interface Documentfacet - the facet name
true if the document has the facet
public boolean addFacet(String facet)
throws DocumentException
DocumentDoes nothing if the facet was already present on the document.
addFacet in interface Documentfacet - the facet name
true if the facet was added, or false if it is
already present
DocumentException - if the facet does not exist
public boolean removeFacet(String facet)
throws DocumentException
DocumentIt's not possible to remove a facet coming from the document type.
removeFacet in interface Documentfacet - the facet name
true if the facet was removed, or false if it
isn't present or is present on the type or does not exit
DocumentException
|
Nuxeo Enterprise Platform 5.4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||