Nuxeo ECM Projects 5.4.3-SNAPSHOT

Uses of Class
org.nuxeo.ecm.core.api.DocumentException

Packages that use DocumentException
org.nuxeo.ecm.core.api The core API of the Nuxeo platform, including: CoreSession, DocumentModel, Blob
org.nuxeo.ecm.core.api.facet   
org.nuxeo.ecm.core.api.impl   
org.nuxeo.ecm.core.event.impl Event Service implementation. 
org.nuxeo.ecm.core.model   
org.nuxeo.ecm.core.repository   
org.nuxeo.ecm.core.security   
org.nuxeo.ecm.core.storage.sql.coremodel   
org.nuxeo.ecm.core.storage.sql.ra   
org.nuxeo.ecm.core.versioning   
org.nuxeo.ecm.platform.uidgen Contains interfaces used by UID generators. 
org.nuxeo.ecm.platform.uidgen.generators   
org.nuxeo.ecm.platform.uidgen.service   
 

Uses of DocumentException in org.nuxeo.ecm.core.api
 

Methods in org.nuxeo.ecm.core.api that throw DocumentException
static DataModel DocumentModelFactory.createDataModel(Document doc, Schema schema)
          Creates a data model from a document and a schema.
static DocumentModelImpl DocumentModelFactory.createDocumentModel(Document doc)
           
static DocumentModelImpl DocumentModelFactory.createDocumentModel(Document doc, String[] schemas)
          Creates a document model for an existing document.
static DocumentModelImpl DocumentModelFactory.createDocumentModel(DocumentType docType)
           
static DocumentModelImpl DocumentModelFactory.createDocumentModel(String sessionId, DocumentType docType)
          Creates a document model for a new document.
static DocumentModelImpl DocumentModelFactory.createDocumentModel(String parentPath, String id, DocumentType docType, String[] schemas)
          Deprecated. unused
 String AbstractSession.generateDocumentName(Document parent, String name)
          Generate a non-null unique name within given parent's children.
<T extends Serializable>
T
CoreSession.getDocumentSystemProp(DocumentRef ref, String systemProperty, Class<T> type)
          Gets system property of the specified type for the document ref.
<T extends Serializable>
T
AbstractSession.getDocumentSystemProp(DocumentRef ref, String systemProperty, Class<T> type)
           
<T extends Serializable>
T
DocumentModel.getSystemProp(String systemProperty, Class<T> type)
          Gets system property of the specified type.
static DocumentModel.DocumentModelRefresh DocumentModelFactory.refreshDocumentModel(Document doc, int flags, String[] schemas)
          Gets what's to refresh in a model (except for the ACPs, which need the session).
static Document DocumentResolver.resolveReference(Session session, DocumentRef docRef)
          Resolves the document given its reference.
<T extends Serializable>
void
CoreSession.setDocumentSystemProp(DocumentRef ref, String systemProperty, T value)
          Sets given value as a system property.
<T extends Serializable>
void
AbstractSession.setDocumentSystemProp(DocumentRef ref, String systemProperty, T value)
           
static DocumentModel DocumentModelFactory.writeDocumentModel(DocumentModel docModel, Document doc)
          Writes a document model to a document.
 

Uses of DocumentException in org.nuxeo.ecm.core.api.facet
 

Methods in org.nuxeo.ecm.core.api.facet that throw DocumentException
 Long VersioningDocument.getMajorVersion()
          Deprecated. use VersioningService#getVersionLabel instead
 Long VersioningDocument.getMinorVersion()
          Deprecated. use VersioningService#getVersionLabel instead
 String VersioningDocument.getVersionAsString(int majorDigits, int minorDigits, char sep)
          Deprecated. unused
 void VersioningDocument.incrementMajor()
          Deprecated. let VersioningService do its work
 void VersioningDocument.incrementMinor()
          Deprecated. let VersioningService do its work
 void VersioningDocument.refetchDoc()
          Deprecated. unused
 

Uses of DocumentException in org.nuxeo.ecm.core.api.impl
 

Methods in org.nuxeo.ecm.core.api.impl that throw DocumentException
<T extends Serializable>
T
SimpleDocumentModel.getSystemProp(String systemProperty, Class<T> type)
           
<T extends Serializable>
T
DocumentModelImpl.getSystemProp(String systemProperty, Class<T> type)
           
 

Uses of DocumentException in org.nuxeo.ecm.core.event.impl
 

Methods in org.nuxeo.ecm.core.event.impl that throw DocumentException
<T extends Serializable>
T
ShallowDocumentModel.getSystemProp(String systemProperty, Class<T> type)
           
 

Uses of DocumentException in org.nuxeo.ecm.core.model
 

Subclasses of DocumentException in org.nuxeo.ecm.core.model
 class DocumentExistsException
           
 class NoSuchDocumentException
           
 class NoSuchPropertyException
           
 class PropertyExistsException
           
 class PropertyTypeException
           
 

Methods in org.nuxeo.ecm.core.model that throw DocumentException
 Document MockDocument.addChild(String name, String typeName)
           
 Document DocumentContainer.addChild(String name, String typeName)
          Creates a new child document given its typename.
 boolean MockDocument.addFacet(String facet)
           
 boolean Document.addFacet(String facet)
          Adds a facet to the document instance.
 void Session.cancel()
          Cancels changes done in this session.
 Document MockDocument.checkIn(String label, String description)
           
 void MockDocument.checkOut()
           
 void Session.close()
          Closes this session and saves changes on the workspace, if any.
 Document Session.copy(Document src, Document dst, String name)
          Copies the source document to the given folder.
 Document Session.createProxy(Document doc, Document folder)
          Creates a generic proxy to the given document inside the given folder.
 Document Session.createProxyForVersion(Document parent, Document doc, String versionLabel)
          Deprecated.  
 Map<String,Object> PropertyContainer.exportFlatMap(String[] schemas)
          Exports a flat view of properties in this document.
 Map<String,Object> MockDocument.exportFlatMap(String[] schemas)
           
 Map<String,Object> PropertyContainer.exportMap(String schemaName)
           
 Map<String,Object> MockDocument.exportMap(String schemaName)
           
 Map<String,Map<String,Object>> PropertyContainer.exportMap(String[] schemas)
          Exports the properties belonging to the given schemas as a java Map.
 Map<String,Map<String,Object>> MockDocument.exportMap(String[] schemas)
           
 Document MockDocument.getBaseVersion()
           
 boolean PropertyContainer.getBoolean(String name)
          Gets the value of a scalar property as a boolean.
 boolean MockDocument.getBoolean(String name)
           
 String MockDocument.getCheckinComment()
           
 Document MockDocument.getChild(String name)
           
 Document DocumentContainer.getChild(String name)
          Gets a child document given its name.
 Iterator<Document> MockDocument.getChildren()
           
 Iterator<Document> DocumentContainer.getChildren()
          Gets an iterator over the children of the document.
 DocumentIterator MockDocument.getChildren(int start)
           
 DocumentIterator DocumentContainer.getChildren(int start)
           
 List<String> MockDocument.getChildrenIds()
           
 List<String> DocumentContainer.getChildrenIds()
          Gets a list of the children ids.
 Blob PropertyContainer.getContent(String name)
          Gets the value of the named content property.
 Blob MockDocument.getContent(String name)
           
 InputStream Session.getDataStream(String key)
          Gets a blob stream using the given key.
 Calendar PropertyContainer.getDate(String name)
          Gets the value of a scalar property as a date.
 Calendar MockDocument.getDate(String name)
           
 Document Session.getDocumentByUUID(String uuid)
          Gets a document given its ID.
 double PropertyContainer.getDouble(String name)
          Gets the value of a scalar property as a double.
 double MockDocument.getDouble(String name)
           
 Calendar MockDocument.getLastModified()
           
 Calendar Document.getLastModified()
          Gets the last modification time on this document.
 Document MockDocument.getLastVersion()
           
 Lock MockDocument.getLock()
           
 Lock Lockable.getLock()
          Gets the lock key if a lock exists on the current object.
 long PropertyContainer.getLong(String name)
          Gets the value of a scalar property as a long.
 long MockDocument.getLong(String name)
           
 String Property.getName()
          Gets the name used to identify this property by its container.
 String MockDocument.getName()
           
 String Document.getName()
          Gets the name of this document.
 Document Session.getNullDocument()
          Gets the null document, to be used as a fake parent to add placeless children.
 Session[] Repository.getOpenedSessions()
           
 Document MockDocument.getParent()
           
 Document Document.getParent()
          Gets the parent document or null if this is the root document.
 String MockDocument.getPath()
           
 String Document.getPath()
          Gets the path of this document.
 Collection<Property> PropertyContainer.getProperties()
          Gets the collection of the sub properties in this container.
 Collection<Property> Property.getProperties()
          Gets the collection of the children properties.
 Collection<Property> MockDocument.getProperties()
           
 Property PropertyContainer.getProperty(String name)
          Gets a property given its name.
 Property Property.getProperty(String name)
          Gets the children property given its name.
 Property MockDocument.getProperty(String name)
           
 Iterator<Property> PropertyContainer.getPropertyIterator()
          Gets an iterator over all existing properties in this container.
 Iterator<Property> Property.getPropertyIterator()
          Gets an iterator over the children properties.
 Iterator<Property> MockDocument.getPropertyIterator()
           
 Object PropertyContainer.getPropertyValue(String name)
          Generic method to retrieve a property value.
 Object MockDocument.getPropertyValue(String name)
           
 Collection<Document> Session.getProxies(Document doc, Document folder)
          Finds the proxies for a document.
 Document Session.getRootDocument()
          Gets the root document in this repository.
 Session Repository.getSession(long sessionId)
           
 Session Repository.getSession(Map<String,Serializable> context)
           
 Document MockDocument.getSourceDocument()
           
 String PropertyContainer.getString(String name)
          Gets the value of a scalar property as a string.
 String MockDocument.getString(String name)
           
<T extends Serializable>
T
MockDocument.getSystemProp(String name, Class<T> type)
           
<T extends Serializable>
T
Document.getSystemProp(String name, Class<T> type)
          Get system property of the specified type.
 Object Property.getValue()
          Gets the value of this property.
 Document MockDocument.getVersion(String label)
           
 Document Session.getVersion(String versionableId, VersionModel versionModel)
          Gets a version of a document, given its versionable id and label.
 Calendar MockDocument.getVersionCreationDate()
           
 String MockDocument.getVersionLabel()
           
 List<Document> MockDocument.getVersions()
           
 String MockDocument.getVersionSeriesId()
           
 List<String> MockDocument.getVersionsIds()
           
 Document MockDocument.getWorkingCopy()
           
 boolean MockDocument.hasChild(String name)
           
 boolean DocumentContainer.hasChild(String name)
          Tests if the document has the named child.
 boolean MockDocument.hasChildren()
           
 boolean DocumentContainer.hasChildren()
          Tests if the document has any children.
 boolean MockDocument.hasVersions()
           
 Document Session.importDocument(String uuid, Document parent, String name, String typeName, Map<String,Serializable> properties)
          Imports a document with a given id and parent.
 void PropertyContainer.importFlatMap(Map<String,Object> map)
          Imports a flat map of properties into this document.
 void MockDocument.importFlatMap(Map<String,Object> map)
           
 void PropertyContainer.importMap(Map<String,Map<String,Object>> map)
          Imports the tree properties from the given Java Map.
 void MockDocument.importMap(Map<String,Map<String,Object>> map)
           
 void Repository.initialize()
           
 boolean MockDocument.isCheckedOut()
           
 boolean MockDocument.isLatestMajorVersion()
           
 boolean MockDocument.isLatestVersion()
           
 boolean MockDocument.isMajorVersion()
           
 boolean PropertyContainer.isPropertySet(String path)
          Tests whether the property at the given path exists (the property may be either a scalar or a composite one).
 boolean Property.isPropertySet(String name)
          Checks whether this property has child property with the given name.
 boolean MockDocument.isPropertySet(String path)
           
 boolean MockDocument.isVersionSeriesCheckedOut()
           
 Document Session.move(Document src, Document dst, String name)
          Moves the source document to the given folder.
 void MockDocument.orderBefore(String src, String dest)
           
 void DocumentContainer.orderBefore(String src, String dest)
          Orders the given source child before the destination child.
 void MockDocument.remove()
           
 void Document.remove()
          Removes this document and all its children, if any.
 void MockDocument.removeChild(String name)
           
 void DocumentContainer.removeChild(String name)
          Removes the child having the given name
 boolean MockDocument.removeFacet(String facet)
           
 boolean Document.removeFacet(String facet)
          Removes a facet from the document instance.
 Lock MockDocument.removeLock(String owner)
           
 Lock Lockable.removeLock(String owner)
          Removes a lock on the current document.
 void PropertyContainer.removeProperty(String name)
          Removes the property with the given name.
 void MockDocument.removeProperty(String name)
           
 Document Session.resolvePath(String path)
          Gets the document at the given path, if any.
 Document MockDocument.resolvePath(String relPath)
           
 Document DocumentContainer.resolvePath(String relPath)
          Resolves a document given its relative path to the current document.
 void MockDocument.restore(Document version)
           
 void Session.save()
          Saves this session.
 void MockDocument.save()
           
 void Document.save()
          Saves any modification done on this document or its children.
 void PropertyContainer.setBoolean(String name, boolean value)
          Sets the scalar property value to the given boolean value.
 void MockDocument.setBoolean(String name, boolean value)
           
 void PropertyContainer.setContent(String name, Blob value)
          Sets the content property to the given value.
 void MockDocument.setContent(String name, Blob value)
           
 void PropertyContainer.setDate(String name, Calendar value)
          Sets the scalar property value to the given date value.
 void MockDocument.setDate(String name, Calendar value)
           
 void PropertyContainer.setDouble(String name, double value)
          Set the scalar property value to the given double value.
 void MockDocument.setDouble(String name, double value)
           
 Lock MockDocument.setLock(Lock lock)
           
 Lock Lockable.setLock(Lock lock)
          Sets a lock on the current document.
 void PropertyContainer.setLong(String name, long value)
          Sets the scalar property value to the given long value.
 void MockDocument.setLong(String name, long value)
           
 void Property.setNull()
          Nullify this property.
 void PropertyContainer.setPropertyValue(String name, Object value)
          Generic method to set a property value.
 void MockDocument.setPropertyValue(String name, Object value)
           
 void Session.setProxyTarget(Document proxy, Document target)
          Sets a proxies' target.
 void PropertyContainer.setString(String name, String value)
          Sets the scalar property value to the given string value.
 void MockDocument.setString(String name, String value)
           
<T extends Serializable>
void
MockDocument.setSystemProp(String name, T value)
           
<T extends Serializable>
void
Document.setSystemProp(String name, T value)
          Set a system property which is a property of by the built-in node type ECM_SYSTEM_ANY.
 void DocumentProxy.setTargetDocument(Document target)
          Sets the document (version or live document) to which this proxy points.
 void Property.setValue(Object value)
          Sets the value of this property.
 

Uses of DocumentException in org.nuxeo.ecm.core.repository
 

Methods in org.nuxeo.ecm.core.repository that throw DocumentException
 String JBossRepository.listOpenedSessions()
           
 

Uses of DocumentException in org.nuxeo.ecm.core.security
 

Subclasses of DocumentException in org.nuxeo.ecm.core.security
 class SecurityException
          Is thrown when an exception related to the security manager occurs.
 

Uses of DocumentException in org.nuxeo.ecm.core.storage.sql.coremodel
 

Methods in org.nuxeo.ecm.core.storage.sql.coremodel that throw DocumentException
 Document SQLDocumentVersion.addChild(String name, String typeName)
           
 Document SQLDocumentProxy.addChild(String name, String typeName)
           
 Document SQLDocumentLive.addChild(String name, String typeName)
           
 boolean SQLDocumentProxy.addFacet(String facet)
           
 boolean SQLDocumentLive.addFacet(String facet)
           
 void SQLSession.cancel()
           
 Document SQLDocumentProxy.checkIn(String label, String checkinComment)
           
 Document SQLDocumentLive.checkIn(String label, String checkinComment)
           
 void SQLDocumentProxy.checkOut()
           
 void SQLDocumentLive.checkOut()
           
 void SQLDocumentProxy.checkWritable()
           
 void SQLDocument.checkWritable()
          Raises an exception if the document is read-only.
 void SQLBaseProperty.checkWritable()
           
 void SQLSession.close()
           
 Document SQLSession.copy(Document source, Document parent, String name)
           
 Document SQLSession.createProxy(Document doc, Document folder)
           
 Document SQLSession.createProxyForVersion(Document parent, Document document, String label)
           
 Map<String,Object> SQLDocumentProxy.exportFlatMap(String[] schemas)
           
 Map<String,Object> SQLComplexProperty.exportFlatMap(String[] schemas)
           
 Map<String,Object> SQLComplexListProperty.exportFlatMap(String[] schemas)
           
 Map<String,Object> SQLDocumentProxy.exportMap(String schemaName)
           
 Map<String,Object> SQLComplexProperty.exportMap(String schemaName)
           
 Map<String,Object> SQLComplexListProperty.exportMap(String schemaName)
           
 Map<String,Map<String,Object>> SQLDocumentProxy.exportMap(String[] schemas)
           
 Map<String,Map<String,Object>> SQLComplexProperty.exportMap(String[] schemas)
           
 Map<String,Map<String,Object>> SQLComplexListProperty.exportMap(String[] schemas)
           
 Property SQLDocumentProxy.getACLProperty()
           
 Property SQLDocumentLive.getACLProperty()
           
 Property SQLDocument.getACLProperty()
          Returns the property holding the ACL.
 Document SQLDocumentVersion.getBaseVersion()
           
 Document SQLDocumentProxy.getBaseVersion()
           
 Document SQLDocumentLive.getBaseVersion()
           
 boolean SQLDocumentProxy.getBoolean(String name)
           
 boolean SQLComplexProperty.getBoolean(String name)
           
 boolean SQLComplexListProperty.getBoolean(String name)
           
 String SQLDocumentProxy.getCheckinComment()
           
 String SQLDocumentLive.getCheckinComment()
           
 Document SQLDocumentVersion.getChild(String name)
           
 Document SQLDocumentProxy.getChild(String name)
           
 Document SQLDocumentLive.getChild(String name)
           
 Iterator<Document> SQLDocumentVersion.getChildren()
           
 Iterator<Document> SQLDocumentProxy.getChildren()
           
 Iterator<Document> SQLDocumentLive.getChildren()
           
 DocumentIterator SQLDocumentProxy.getChildren(int start)
           
 DocumentIterator SQLDocumentLive.getChildren(int start)
           
 List<String> SQLDocumentVersion.getChildrenIds()
           
 List<String> SQLDocumentProxy.getChildrenIds()
           
 List<String> SQLDocumentLive.getChildrenIds()
           
 Blob SQLDocumentProxy.getContent(String name)
           
 Blob SQLComplexProperty.getContent(String name)
           
 Blob SQLComplexListProperty.getContent(String name)
           
 InputStream SQLSession.getDataStream(String key)
           
 Calendar SQLDocumentProxy.getDate(String name)
           
 Calendar SQLComplexProperty.getDate(String name)
           
 Calendar SQLComplexListProperty.getDate(String name)
           
 Document SQLSession.getDocumentByUUID(String uuid)
           
 double SQLDocumentProxy.getDouble(String name)
           
 double SQLComplexProperty.getDouble(String name)
           
 double SQLComplexListProperty.getDouble(String name)
           
 Calendar SQLDocumentProxy.getLastModified()
           
 Document SQLDocumentProxy.getLastVersion()
           
 Document SQLDocumentLive.getLastVersion()
           
 Document SQLSession.getLastVersion(Serializable versionSeriesId)
           
 Lock SQLDocumentProxy.getLock()
           
 Lock SQLDocumentLive.getLock()
           
 long SQLDocumentProxy.getLong(String name)
           
 long SQLComplexProperty.getLong(String name)
           
 long SQLComplexListProperty.getLong(String name)
           
 String SQLDocumentProxy.getName()
           
 Document SQLDocumentVersion.getParent()
           
 Document SQLDocumentProxy.getParent()
           
 Document SQLDocumentLive.getParent()
           
 String SQLDocumentVersion.getPath()
           
 String SQLDocumentProxy.getPath()
           
 String SQLDocumentLive.getPath()
           
 Collection<Property> SQLDocumentProxy.getProperties()
           
 Collection<Property> SQLComplexProperty.getProperties()
           
 List<Property> SQLComplexListProperty.getProperties()
           
 Collection<Property> SQLBaseProperty.getProperties()
           
 Property SQLDocumentProxy.getProperty(String name)
           
 Property SQLDocumentLive.getProperty(String name)
           
 Property SQLComplexProperty.getProperty(String name)
           
 Property SQLComplexListProperty.getProperty(String posString)
           
 Property SQLBaseProperty.getProperty(String name)
           
 Iterator<Property> SQLDocumentProxy.getPropertyIterator()
           
 Iterator<Property> SQLComplexProperty.getPropertyIterator()
           
 Iterator<Property> SQLComplexListProperty.getPropertyIterator()
           
 Iterator<Property> SQLBaseProperty.getPropertyIterator()
           
 Object SQLDocumentProxy.getPropertyValue(String name)
           
 Object SQLComplexProperty.getPropertyValue(String name)
           
 Object SQLComplexListProperty.getPropertyValue(String name)
           
 Collection<Document> SQLSession.getProxies(Document document, Document parent)
           
 Session SQLRepository.getSession(Map<String,Serializable> context)
           
 Document SQLDocumentVersion.getSourceDocument()
           
 Document SQLDocumentProxy.getSourceDocument()
           
 Document SQLDocumentLive.getSourceDocument()
           
 String SQLDocumentProxy.getString(String name)
           
 String SQLComplexProperty.getString(String name)
           
 String SQLComplexListProperty.getString(String name)
           
<T extends Serializable>
T
SQLDocumentProxy.getSystemProp(String name, Class<T> type)
           
<T extends Serializable>
T
SQLDocumentLive.getSystemProp(String name, Class<T> type)
           
 Serializable SQLSimpleProperty.getValue()
           
 Object SQLDocumentProxy.getValue()
           
 Object SQLContentProperty.getValue()
           
 Object SQLComplexProperty.getValue()
           
 List<Object> SQLComplexListProperty.getValue()
           
 Object SQLCollectionProperty.getValue()
           
 Document SQLDocumentProxy.getVersion(String label)
           
 Document SQLDocumentLive.getVersion(String label)
           
 Document SQLSession.getVersion(String versionableId, VersionModel versionModel)
           
 Calendar SQLDocumentProxy.getVersionCreationDate()
           
 Calendar SQLDocumentLive.getVersionCreationDate()
           
 String SQLDocumentProxy.getVersionLabel()
           
 String SQLDocumentLive.getVersionLabel()
           
 List<Document> SQLDocumentProxy.getVersions()
           
 List<Document> SQLDocumentLive.getVersions()
           
 String SQLDocumentVersion.getVersionSeriesId()
           
 String SQLDocumentProxy.getVersionSeriesId()
           
 String SQLDocumentLive.getVersionSeriesId()
           
 List<String> SQLDocumentProxy.getVersionsIds()
           
 List<String> SQLDocumentLive.getVersionsIds()
           
 Document SQLDocumentVersion.getWorkingCopy()
           
 Document SQLDocumentProxy.getWorkingCopy()
           
 Document SQLDocumentLive.getWorkingCopy()
           
 boolean SQLDocumentVersion.hasChild(String name)
           
 boolean SQLDocumentProxy.hasChild(String name)
           
 boolean SQLDocumentLive.hasChild(String name)
           
 boolean SQLDocumentVersion.hasChildren()
           
 boolean SQLDocumentProxy.hasChildren()
           
 boolean SQLDocumentLive.hasChildren()
           
 boolean SQLDocumentProxy.hasVersions()
           
 boolean SQLDocumentLive.hasVersions()
           
 Document SQLSession.importDocument(String uuid, Document parent, String name, String typeName, Map<String,Serializable> properties)
           
 void SQLDocumentProxy.importFlatMap(Map<String,Object> map)
           
 void SQLComplexProperty.importFlatMap(Map<String,Object> map)
           
 void SQLComplexListProperty.importFlatMap(Map<String,Object> map)
           
 void SQLDocumentProxy.importMap(Map<String,Map<String,Object>> map)
           
 void SQLComplexProperty.importMap(Map<String,Map<String,Object>> map)
           
 void SQLComplexListProperty.importMap(Map<String,Map<String,Object>> map)
           
 boolean SQLDocumentVersion.isCheckedOut()
           
 boolean SQLDocumentProxy.isCheckedOut()
           
 boolean SQLDocumentLive.isCheckedOut()
           
 boolean SQLDocumentVersion.isLatestMajorVersion()
           
 boolean SQLDocumentProxy.isLatestMajorVersion()
           
 boolean SQLDocumentLive.isLatestMajorVersion()
           
 boolean SQLDocumentVersion.isLatestVersion()
           
 boolean SQLDocumentProxy.isLatestVersion()
           
 boolean SQLDocumentLive.isLatestVersion()
           
 boolean SQLDocumentVersion.isMajorVersion()
           
 boolean SQLDocumentProxy.isMajorVersion()
           
 boolean SQLDocumentLive.isMajorVersion()
           
 boolean SQLDocumentProxy.isPropertySet(String name)
           
 boolean SQLComplexProperty.isPropertySet(String name)
           
 boolean SQLComplexListProperty.isPropertySet(String name)
           
 boolean SQLBaseProperty.isPropertySet(String name)
           
 boolean SQLDocumentVersion.isVersionSeriesCheckedOut()
           
 boolean SQLDocumentProxy.isVersionSeriesCheckedOut()
           
 boolean SQLDocumentLive.isVersionSeriesCheckedOut()
           
 Document SQLSession.move(Document source, Document parent, String name)
           
 void SQLDocumentVersion.orderBefore(String src, String dest)
           
 void SQLDocumentProxy.orderBefore(String src, String dest)
           
 void SQLDocumentLive.orderBefore(String src, String dest)
           
 void SQLDocumentProxy.remove()
           
 void SQLDocumentLive.remove()
           
 void SQLDocumentVersion.removeChild(String name)
           
 void SQLDocumentProxy.removeChild(String name)
           
 void SQLDocumentLive.removeChild(String name)
           
 boolean SQLDocumentProxy.removeFacet(String facet)
           
 boolean SQLDocumentLive.removeFacet(String facet)
           
 Lock SQLDocumentProxy.removeLock(String owner)
           
 Lock SQLDocumentLive.removeLock(String owner)
           
 void SQLDocumentProxy.removeProperty(String name)
           
 void SQLComplexProperty.removeProperty(String name)
           
 void SQLComplexListProperty.removeProperty(String name)
           
 Document SQLSession.resolvePath(String path)
           
 Document SQLDocumentProxy.resolvePath(String path)
           
 Document SQLDocumentLive.resolvePath(String path)
           
 void SQLDocumentProxy.restore(Document version)
           
 void SQLDocumentLive.restore(Document version)
           
 void SQLSession.save()
           
 void SQLDocumentProxy.save()
           
 void SQLDocumentLive.save()
           
 void SQLDocumentVersion.setBoolean(String name, boolean value)
           
 void SQLDocumentProxy.setBoolean(String name, boolean value)
           
 void SQLComplexProperty.setBoolean(String name, boolean value)
           
 void SQLComplexListProperty.setBoolean(String name, boolean value)
           
 void SQLDocumentProxy.setContent(String name, Blob value)
           
 void SQLComplexProperty.setContent(String name, Blob value)
           
 void SQLComplexListProperty.setContent(String name, Blob value)
           
 void SQLDocumentProxy.setDate(String name, Calendar value)
           
 void SQLComplexProperty.setDate(String name, Calendar value)
           
 void SQLComplexListProperty.setDate(String name, Calendar value)
           
 void SQLDocumentProxy.setDouble(String name, double value)
           
 void SQLComplexProperty.setDouble(String name, double value)
           
 void SQLComplexListProperty.setDouble(String name, double value)
           
 void SQLComplexListProperty.setList(List<?> list)
           
 Lock SQLDocumentProxy.setLock(Lock lock)
           
 Lock SQLDocumentLive.setLock(Lock lock)
           
 void SQLDocumentProxy.setLong(String name, long value)
           
 void SQLComplexProperty.setLong(String name, long value)
           
 void SQLComplexListProperty.setLong(String name, long value)
           
 void SQLDocumentProxy.setNull()
           
 void SQLBaseProperty.setNull()
           
 void SQLDocumentVersion.setPropertyValue(String name, Object value)
           
 void SQLDocumentProxy.setPropertyValue(String name, Object value)
           
 void SQLComplexProperty.setPropertyValue(String name, Object value)
           
 void SQLComplexListProperty.setPropertyValue(String name, Object value)
           
 void SQLSession.setProxyTarget(Document proxy, Document target)
           
 void SQLDocumentVersion.setString(String name, String value)
           
 void SQLDocumentProxy.setString(String name, String value)
           
 void SQLComplexProperty.setString(String name, String value)
           
 void SQLComplexListProperty.setString(String name, String value)
           
<T extends Serializable>
void
SQLDocumentProxy.setSystemProp(String name, T value)
           
<T extends Serializable>
void
SQLDocumentLive.setSystemProp(String name, T value)
           
 void SQLDocumentProxy.setTargetDocument(Document target)
           
 void SQLSimpleProperty.setValue(Object value)
           
 void SQLDocumentProxy.setValue(Object value)
           
 void SQLContentProperty.setValue(Object value)
           
 void SQLComplexProperty.setValue(Object value)
           
 void SQLComplexListProperty.setValue(Object value)
           
 void SQLCollectionProperty.setValue(Object value)
           
 

Constructors in org.nuxeo.ecm.core.storage.sql.coremodel that throw DocumentException
SQLSession(Session session, Repository repository, Map<String,Serializable> context)
           
 

Uses of DocumentException in org.nuxeo.ecm.core.storage.sql.ra
 

Methods in org.nuxeo.ecm.core.storage.sql.ra that throw DocumentException
 Session ConnectionFactoryImpl.getSession(long sessionId)
          Deprecated. unused
 Session ConnectionFactoryImpl.getSession(Map<String,Serializable> context)
           
 

Uses of DocumentException in org.nuxeo.ecm.core.versioning
 

Methods in org.nuxeo.ecm.core.versioning that throw DocumentException
 Document VersionableDocument.checkIn(String label, String checkinComment)
          Creates a new version.
 void VersionableDocument.checkOut()
           
 Document VersioningService.doCheckIn(Document doc, VersioningOption option, String checkinComment)
          Applies version increment option and does a checkin.
 Document VersioningComponent.doCheckIn(Document doc, VersioningOption option, String checkinComment)
           
 Document StandardVersioningService.doCheckIn(Document doc, VersioningOption option, String checkinComment)
           
 Document CompatVersioningService.doCheckIn(Document doc, VersioningOption option, String checkinComment)
           
 void VersioningService.doCheckOut(Document doc)
          Apply modifications after doing a checkout.
 void VersioningComponent.doCheckOut(Document doc)
           
 void StandardVersioningService.doCheckOut(Document doc)
           
 void CompatVersioningService.doCheckOut(Document doc)
           
 void VersioningService.doPostCreate(Document doc, Map<String,Serializable> options)
          Applies versioning after document creation.
 void VersioningComponent.doPostCreate(Document doc, Map<String,Serializable> options)
           
 Document VersioningService.doPostSave(Document doc, VersioningOption option, String checkinComment, Map<String,Serializable> options)
          Applies versioning options after document save.
 Document VersioningComponent.doPostSave(Document doc, VersioningOption option, String checkinComment, Map<String,Serializable> options)
           
 Document StandardVersioningService.doPostSave(Document doc, VersioningOption option, String checkinComment, Map<String,Serializable> options)
           
 Document CompatVersioningService.doPostSave(Document doc, VersioningOption option, String checkinComment, Map<String,Serializable> options)
           
 VersioningOption VersioningService.doPreSave(Document doc, boolean isDirty, VersioningOption option, String checkinComment, Map<String,Serializable> options)
          Applies versioning options before document save.
 VersioningOption VersioningComponent.doPreSave(Document doc, boolean isDirty, VersioningOption option, String checkinComment, Map<String,Serializable> options)
           
 VersioningOption StandardVersioningService.doPreSave(Document doc, boolean isDirty, VersioningOption option, String checkinComment, Map<String,Serializable> options)
           
 VersioningOption CompatVersioningService.doPreSave(Document doc, boolean isDirty, VersioningOption option, String checkinComment, Map<String,Serializable> options)
           
 Document VersionableDocument.getBaseVersion()
          Gets the version to which a checked in document is linked.
 String VersionableDocument.getCheckinComment()
           
 Document VersionableDocument.getLastVersion()
          Gets the last version of this document.
 Long VersioningDocumentAdapter.getMajorVersion()
           
 Long VersioningDocumentAdapter.getMinorVersion()
           
 Document VersionableDocument.getSourceDocument()
          Gets the head ("live") version of this document.
 Document VersionableDocument.getVersion(String label)
          Gets a version of this document, given its label.
 String VersioningDocumentAdapter.getVersionAsString(int majorDigits, int minorDigits, char sep)
          Deprecated. 
 Calendar VersionableDocument.getVersionCreationDate()
           
 String VersionableDocument.getVersionLabel()
           
 List<Document> VersionableDocument.getVersions()
           
 String VersionableDocument.getVersionSeriesId()
          Gets the version series id.
 List<String> VersionableDocument.getVersionsIds()
          Gets the list of version ids for this document.
 Document VersionableDocument.getWorkingCopy()
           
 boolean VersionableDocument.hasVersions()
          Tells the caller if this document has versions or not.
 void VersioningDocumentAdapter.incrementMajor()
          Deprecated. 
 void VersioningDocumentAdapter.incrementMinor()
          Deprecated. 
 boolean VersionableDocument.isCheckedOut()
           
 boolean VersionableDocument.isLatestMajorVersion()
           
 boolean VersionableDocument.isLatestVersion()
           
 boolean VersionableDocument.isMajorVersion()
           
 boolean VersionableDocument.isVersionSeriesCheckedOut()
           
 void VersioningDocumentAdapter.refetchDoc()
          Deprecated. 
 void VersionableDocument.restore(Document version)
          Replaces current version with version specified.
 

Uses of DocumentException in org.nuxeo.ecm.platform.uidgen
 

Methods in org.nuxeo.ecm.platform.uidgen that throw DocumentException
 String UIDGenerator.createUID(DocumentModel document)
          Returns a new UID for the given doc.
 String UIDGenerator.getSequenceKey(DocumentModel document)
           
 void UIDGenerator.setUID(DocumentModel document)
          Creates a new UID for the given doc and sets the field configured in the generator component with this value.
 void AbstractUIDGenerator.setUID(DocumentModel document)
           
 

Uses of DocumentException in org.nuxeo.ecm.platform.uidgen.generators
 

Methods in org.nuxeo.ecm.platform.uidgen.generators that throw DocumentException
 String UIDGenerator1.createUID(DocumentModel doc)
           
 String UIDGCoreDocument.createUID(DocumentModel document)
           
 String UIDGenerator1.getSequenceKey(DocumentModel doc)
           
 String UIDGCoreDocument.getSequenceKey(DocumentModel document)
           
 

Uses of DocumentException in org.nuxeo.ecm.platform.uidgen.service
 

Methods in org.nuxeo.ecm.platform.uidgen.service that throw DocumentException
 String UIDGeneratorService.createUID(DocumentModel doc)
           
 void UIDGeneratorService.setUID(DocumentModel doc)
          Creates a new UID for the given doc and sets the field configured in the generator component with this value.
 


Nuxeo ECM Projects 5.4.3-SNAPSHOT

Copyright © 2011 Nuxeo SAS. All Rights Reserved.