Nuxeo ECM Projects 5.4.3-SNAPSHOT

Uses of Class
org.nuxeo.ecm.core.api.model.PropertyException

Packages that use PropertyException
org.nuxeo.ecm.automation.core.util   
org.nuxeo.ecm.core.api The core API of the Nuxeo platform, including: CoreSession, DocumentModel, Blob
org.nuxeo.ecm.core.api.blobholder   
org.nuxeo.ecm.core.api.externalblob   
org.nuxeo.ecm.core.api.impl   
org.nuxeo.ecm.core.api.model   
org.nuxeo.ecm.core.api.model.impl   
org.nuxeo.ecm.core.api.model.impl.osm   
org.nuxeo.ecm.core.api.model.impl.primitives   
org.nuxeo.ecm.core.event.impl Event Service implementation. 
org.nuxeo.ecm.directory   
org.nuxeo.ecm.platform.contentview.json   
org.nuxeo.ecm.platform.filemanager.core.listener   
org.nuxeo.ecm.platform.picture.api.adapters   
org.nuxeo.ecm.webengine.forms   
 

Uses of PropertyException in org.nuxeo.ecm.automation.core.util
 

Methods in org.nuxeo.ecm.automation.core.util that throw PropertyException
static void DocumentHelper.addBlob(Property p, Blob blob)
          Given a document property, updates its value with the given blob.
 

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

Methods in org.nuxeo.ecm.core.api that throw PropertyException
 Object DataModel.getData(String key)
          Gets the named field value.
 Map<String,Object> DataModel.getMap()
          Gets all the fields set in this data model.
 Property DocumentModel.getProperty(String xpath)
          Gets a property given a xpath.
 Serializable DocumentModel.getPropertyValue(String xpath)
          Gets a property value given a xpath.
 Object DataModel.getValue(String path)
          Gets a value given its path.
 void DataModel.setData(String key, Object value)
          Sets the name field.
 void DataModel.setMap(Map<String,Object> data)
          Sets several field at once.
 void DocumentModel.setPropertyValue(String xpath, Serializable value)
          Sets a property value given a xpath.
 Object DataModel.setValue(String path, Object value)
          Sets a value to a property given its path.
 

Uses of PropertyException in org.nuxeo.ecm.core.api.blobholder
 

Methods in org.nuxeo.ecm.core.api.blobholder that throw PropertyException
 Blob BlobHolderAdapterService.getExternalBlobForUri(String uri)
          Returns an external blob from given uri.
 Blob BlobHolderAdapterComponent.getExternalBlobForUri(String uri)
           
 

Uses of PropertyException in org.nuxeo.ecm.core.api.externalblob
 

Methods in org.nuxeo.ecm.core.api.externalblob that throw PropertyException
 Blob FileSystemExternalBlobAdapter.getBlob(String uri)
           
 Blob ExternalBlobAdapter.getBlob(String uri)
          Retrieves the blob for given uri.
 String FileSystemExternalBlobAdapter.getFileAbsolutePath(String localPath)
           
 String AbstractExternalBlobAdapter.getLocalName(String uri)
           
 

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

Methods in org.nuxeo.ecm.core.api.impl that throw PropertyException
 Object SimpleDocumentModel.SimpleDataModel.getData(String key)
           
 Object DataModelImpl.getData(String key)
           
 Map<String,Object> SimpleDocumentModel.SimpleDataModel.getMap()
           
 Map<String,Object> DataModelImpl.getMap()
           
 Property SimpleDocumentModel.getProperty(String xpath)
           
 Serializable SimpleDocumentModel.getPropertyValue(String xpath)
           
 Serializable DocumentModelImpl.getPropertyValue(String xpath)
           
 Object SimpleDocumentModel.SimpleDataModel.getValue(String path)
           
 Object DataModelImpl.getValue(String path)
           
 void SimpleDocumentModel.SimpleDataModel.setData(String key, Object value)
           
 void DataModelImpl.setData(String key, Object value)
           
 void SimpleDocumentModel.SimpleDataModel.setMap(Map<String,Object> data)
           
 void DataModelImpl.setMap(Map<String,Object> data)
           
 void SimpleDocumentModel.setPropertyValue(String xpath, Serializable value)
           
 void DocumentModelImpl.setPropertyValue(String xpath, Serializable value)
           
 Object SimpleDocumentModel.SimpleDataModel.setValue(String path, Object value)
           
 Object DataModelImpl.setValue(String path, Object value)
           
 

Uses of PropertyException in org.nuxeo.ecm.core.api.model
 

Subclasses of PropertyException in org.nuxeo.ecm.core.api.model
 class InvalidPropertyValueException
           
 class PropertyAccessException
           
 class PropertyConversionException
           
 class PropertyNotFoundException
           
 class ReadOnlyPropertyException
           
 

Methods in org.nuxeo.ecm.core.api.model that throw PropertyException
 void Property.accept(PropertyVisitor visitor, Object arg)
          Method that implement the visitor pattern.
 Property Property.addEmpty()
          Creates an empty child property and adds it as a property to the list container.
 Property Property.addValue(int index, Object value)
          Inserts at the given position a new value to the list.
 Property Property.addValue(Object value)
          Appends a new value to the list.
 PropertyDiff DocumentPart.exportDiff()
           
 Serializable Property.getValue()
          Gets the property normalized value.
<T> T
Property.getValue(Class<T> type)
          Gets the property value as the given type.
<T> T
Property.getValue(Class<T> type, String path)
          Gets the value of the property resolved using the given path.
 Serializable Property.getValue(String path)
          Gets the value of the property resolved using the given path.
 Serializable Property.getValueForWrite()
          Gets the property normalized value for write.
 void DocumentPart.importDiff(PropertyDiff diff)
           
 void Property.init(Serializable value)
          Initializes the property with the given normalized value.
 boolean Property.isSameAs(Property property)
          Compare the two properties by content.
 Serializable Property.remove()
          Removes this property from the tree.
 Map<String,Serializable> ValueExporter.run(DocumentPart dp)
           
 void Property.setValue(int index, Object value)
          Sets a child property value given its index.
 void Property.setValue(Object value)
          Sets this property value.
 void Property.setValue(String path, Object value)
          Sets the value of the property resolved using the given path.
 Object ValueExporter.visit(ListProperty property, Object arg)
           
 Object PropertyVisitor.visit(ListProperty property, Object arg)
           
 Object ValueExporter.visit(MapProperty property, Object arg)
           
 Object PropertyVisitor.visit(MapProperty property, Object arg)
           
 Object ValueExporter.visit(ScalarProperty property, Object arg)
           
 Object PropertyVisitor.visit(ScalarProperty property, Object arg)
           
 

Uses of PropertyException in org.nuxeo.ecm.core.api.model.impl
 

Methods in org.nuxeo.ecm.core.api.model.impl that throw PropertyException
 void ScalarProperty.accept(PropertyVisitor visitor, Object arg)
           
 void MapProperty.accept(PropertyVisitor visitor, Object arg)
           
 void ListProperty.accept(PropertyVisitor visitor, Object arg)
           
 void DocumentPartImpl.accept(PropertyVisitor visitor, Object arg)
           
 Property ListProperty.addValue(int index, Object value)
           
 Property ListProperty.addValue(Object value)
           
 void ListProperty.applyListDiff(ListDiff ld)
          Supports ListDiff for compatibility.
 void DocumentPartImpl.deserialize(ObjectInputStream in)
           
 void DocumentPartImpl.deserializeChildren(ComplexProperty parent, ObjectInputStream in)
           
 void DocumentPartImpl.deserializeChildren(ListProperty parent, ObjectInputStream in)
           
 Serializable AbstractProperty.getValue()
           
<T> T
AbstractProperty.getValue(Class<T> type)
           
<T> T
AbstractProperty.getValue(Class<T> type, String path)
           
 Serializable AbstractProperty.getValue(String path)
           
 Serializable ListProperty.getValueForWrite()
           
 Serializable ComplexProperty.getValueForWrite()
           
 Serializable AbstractProperty.getValueForWrite()
           
 void ListProperty.init(Serializable value)
           
 void ComplexProperty.init(Serializable value)
           
 void AbstractProperty.init(Serializable value)
           
 Serializable ScalarProperty.internalGetValue()
           
 Serializable ListProperty.internalGetValue()
           
 Serializable ComplexProperty.internalGetValue()
           
abstract  Serializable AbstractProperty.internalGetValue()
           
 void ScalarProperty.internalSetValue(Serializable value)
           
 void MapProperty.internalSetValue(Serializable value)
           
 void ListProperty.internalSetValue(Serializable value)
           
 void DocumentPartImpl.internalSetValue(Serializable value)
           
abstract  void AbstractProperty.internalSetValue(Serializable value)
          Sets the given normalized value.
 boolean ScalarProperty.isSameAs(Property property)
           
 boolean ListProperty.isSameAs(Property property)
           
 boolean ComplexProperty.isSameAs(Property property)
          Should be used by container properties.
 Serializable AbstractProperty.remove()
           
 void DocumentPartImpl.serialize(ObjectOutputStream out)
           
 void AbstractProperty.setValue(int index, Object value)
           
 void ListProperty.setValue(Object value)
           
 void ComplexProperty.setValue(Object value)
           
 void AbstractProperty.setValue(Object value)
           
 void AbstractProperty.setValue(String path, Object value)
           
 void ComplexProperty.visitChildren(PropertyVisitor visitor, Object arg)
           
 

Uses of PropertyException in org.nuxeo.ecm.core.api.model.impl.osm
 

Methods in org.nuxeo.ecm.core.api.model.impl.osm that throw PropertyException
 void DynamicObjectAdapter.addField(String name, String property)
           
 void DynamicObjectAdapter.addField(String name, String property, boolean isReadOnly)
           
 Map<String,Object> ObjectAdapter.getMap(Object object)
           
 Map<String,Object> DynamicObjectAdapter.getMap(Object object)
           
 Object ObjectAdapter.getValue(Object object, String name)
           
 Object DynamicObjectAdapter.getValue(Object object, String name)
           
 Serializable ComplexMemberProperty.getValueForWrite()
           
 void ComplexMemberProperty.init(Serializable value)
           
 Serializable ScalarMemberProperty.internalGetValue()
           
 Serializable ObjectProperty.internalGetValue()
           
 Serializable ComplexMemberProperty.internalGetValue()
           
 void ScalarMemberProperty.internalSetValue(Serializable value)
           
 void ObjectProperty.internalSetValue(Serializable value)
           
 void ComplexMemberProperty.internalSetValue(Serializable value)
           
 boolean ComplexMemberProperty.isSameAs(Property property)
           
 void ObjectAdapter.setMap(Object object, Map<String,Object> value)
           
 void DynamicObjectAdapter.setMap(Object object, Map<String,Object> value)
           
 void ComplexMemberProperty.setValue(Object value)
           
 void ObjectAdapter.setValue(Object object, String name, Object value)
           
 void DynamicObjectAdapter.setValue(Object object, String name, Object value)
           
 

Uses of PropertyException in org.nuxeo.ecm.core.api.model.impl.primitives
 

Methods in org.nuxeo.ecm.core.api.model.impl.primitives that throw PropertyException
 Map<String,Serializable> ExternalBlobProperty.getMapFromBlobWithUri(Blob blob)
           
<T> T
ExternalBlobProperty.getValue(Class<T> type)
           
 Serializable ExternalBlobProperty.getValueForWrite()
           
 void ExternalBlobProperty.init(Serializable value)
           
 Serializable ExternalBlobProperty.internalGetValue()
           
 void ExternalBlobProperty.setValue(Object value)
          Overridden to be able to set a blob from a given map.
 

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

Methods in org.nuxeo.ecm.core.event.impl that throw PropertyException
 Property ShallowDocumentModel.getProperty(String xpath)
           
 Serializable ShallowDocumentModel.getPropertyValue(String xpath)
           
 

Uses of PropertyException in org.nuxeo.ecm.directory
 

Methods in org.nuxeo.ecm.directory that throw PropertyException
static DocumentModel BaseSession.createEntryModel(String sessionId, String schema, String id, Map<String,Object> values)
          Returns a bare document model suitable for directory implementations.
static DocumentModel BaseSession.createEntryModel(String sessionId, String schema, String id, Map<String,Object> values, boolean readOnly)
          Returns a bare document model suitable for directory implementations.
 

Uses of PropertyException in org.nuxeo.ecm.platform.contentview.json
 

Methods in org.nuxeo.ecm.platform.contentview.json that throw PropertyException
 Object DocumentModelToJSON.visit(ListProperty property, Object arg)
           
 Object DocumentModelToJSON.visit(MapProperty property, Object arg)
           
 Object DocumentModelToJSON.visit(ScalarProperty property, Object arg)
           
 

Uses of PropertyException in org.nuxeo.ecm.platform.filemanager.core.listener
 

Methods in org.nuxeo.ecm.platform.filemanager.core.listener that throw PropertyException
 void MimetypeIconUpdater.updateFilename(DocumentModel doc)
          Backward compatibility for external filename field: if edited, it might affect the main blob mimetype
 

Uses of PropertyException in org.nuxeo.ecm.platform.picture.api.adapters
 

Methods in org.nuxeo.ecm.platform.picture.api.adapters that throw PropertyException
 Blob PictureResourceAdapter.getPictureFromTitle(String title)
           
 Blob DefaultPictureAdapter.getPictureFromTitle(String title)
           
 

Uses of PropertyException in org.nuxeo.ecm.webengine.forms
 

Methods in org.nuxeo.ecm.webengine.forms that throw PropertyException
 void FormData.fillDocumentFromForm(DocumentModel doc)
           
 void FormData.fillDocumentFromMultiPartForm(DocumentModel doc)
           
 


Nuxeo ECM Projects 5.4.3-SNAPSHOT

Copyright © 2011 Nuxeo SAS. All Rights Reserved.