Class ComplexProperty
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterable<Property>
,Map<String,
,Property> Property
- Direct Known Subclasses:
DocumentPartImpl
,MapProperty
- Author:
- Bogdan Stefanescu
- See Also:
-
Nested Class Summary
-
Field Summary
Fields inherited from class org.nuxeo.ecm.core.api.model.impl.AbstractProperty
flags, forceDirty, IS_DEPRECATED, IS_READONLY, IS_SECURED, NON_CANON_INDEX, parent
Fields inherited from interface org.nuxeo.ecm.core.api.model.Property
DIRTY_MASK, IS_DIRTY, IS_MODIFIED, IS_MOVED, IS_NEW, IS_PHANTOM, IS_REMOVED, NONE
-
Constructor Summary
ModifierConstructorDescriptionprotected
ComplexProperty
(Property parent) protected
ComplexProperty
(Property parent, int flags) -
Method Summary
Modifier and TypeMethodDescriptionaddEmpty()
Creates an empty child property and adds it as a property to the list container.Inserts at the given position a new value to the list.Appends a new value to the list.void
clear()
Throws UnsupportedOperationException, added to implement Map<String, Property> interface.void
Notify the property that its changes was stored so it can safely remove dirty flags.boolean
containsKey
(Object key) Throws UnsupportedOperationException, added to implement Map<String, Property> interface.boolean
containsValue
(Object value) Throws UnsupportedOperationException, added to implement Map<String, Property> interface.entrySet()
get
(int index) Get the child property given it's index.Gets the child property having the given name.final Property
Get a collection over the children properties.protected Serializable
Gets an iterator over the dirty children properties.final Property
getNonPhantomChild
(Field field) final Collection<Property>
abstract ComplexType
getType()
Get the type of the field corresponding to this property.Gets the property normalized value for write.void
init
(Serializable value) Initializes the property with the given normalized value.protected Property
internalGetChild
(Field field) Gets the property given its name.boolean
isEmpty()
boolean
isNormalized
(Object value) Checks if the given value is a normalized one.boolean
Should be used by container properties.keySet()
Normalizes the given value as dictated by the property type.Throws UnsupportedOperationException, added to implement Map<String, Property> interface.void
Throws UnsupportedOperationException, added to implement Map<String, Property> interface.Throws UnsupportedOperationException, added to implement Map<String, Property> interface.void
Sets the child property having the given name.void
Sets this property value.values()
void
visitChildren
(PropertyVisitor visitor, Object arg) Methods inherited from class org.nuxeo.ecm.core.api.model.impl.AbstractProperty
appendDirtyFlags, areFlagsSet, clearFlags, collectPath, computeRemovedProperty, convertTo, getDeprecatedFallback, getDeprecatedParent, getDirtyFlags, getObjectResolver, getParent, getRoot, getSchema, getValue, getValue, getValue, getValue, getValueDeprecation, getXPath, getXPath, hasDefaultValue, internalSetValue, isComplex, isDeprecated, isDirty, isForceDirty, isList, isModified, isMoved, isNew, isPhantom, isReadOnly, isRemoved, isSameValue, isScalar, isSecured, isSecuredForContext, iterator, moveTo, newDeprecatedMessage, newInstance, remove, removePhantomFlag, resolvePath, resolvePath, setDirtyFlags, setFlags, setForceDirty, setIsModified, setIsMoved, setIsNew, setIsRemoved, setReadOnly, setValue, setValue, setValueDeprecation, size, toString, validateType
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll, size
Methods inherited from interface org.nuxeo.ecm.core.api.model.Property
accept, getField, getName, isContainer
-
Field Details
-
children
-
-
Constructor Details
-
ComplexProperty
-
ComplexProperty
-
-
Method Details
-
internalGetChild
Gets the property given its name. If the property was not set, returns null.This method will always be called using a valid property name (a property specified by the schema). The returned property will be cached by its parent so the next time it is needed, it will be reused from the cache. That means this method servers as a initializer for properties - usually you create a new property and return it - you don't need to cache created properties.
If you want to change the way a property is fetched / stored, you must override this method.
- Returns:
- the child. Cannot return null
-
getType
Description copied from interface:Property
Get the type of the field corresponding to this property. -
isNormalized
Description copied from interface:Property
Checks if the given value is a normalized one. This means the value has a type that is normalized.Null values are considered as normalized.
- Specified by:
isNormalized
in interfaceProperty
- Overrides:
isNormalized
in classAbstractProperty
- Parameters:
value
- the value to check- Returns:
- true if the value is normalized false otherwise
-
normalize
Description copied from interface:Property
Normalizes the given value as dictated by the property type.Normalized values are the ones that are used for transportation over the net and that are given to the storage implementation to be stored in the repository
Normalized values must be
Serializable
If the given value is already normalized it will be returned back.
- Specified by:
normalize
in interfaceProperty
- Overrides:
normalize
in classAbstractProperty
- Parameters:
value
- the value to normalize according to the property type- Returns:
- the normalized value
- Throws:
PropertyConversionException
-
get
Description copied from interface:Property
Get the child property given it's index. This operation is mandatory for List properties.If this method is not supported an
UnsupportedOperationException
must be thrownRelative paths are not resolved. THis method is intended to lookup direct chilren. For path lookups, use
Property.resolvePath(String)
instead. -
getNonPhantomChild
-
getChild
-
getNonPhantomChildren
-
getChildren
Description copied from interface:Property
Get a collection over the children properties. This includes all children including phantom ones (those who are not yet set by the user).The returned collection is ordered for list properties, and unordered for complex properties
Be aware that this method is creating phantom child properties for all schema fields that are not yet set.
- Specified by:
getChildren
in interfaceProperty
- Returns:
- the children properties
-
get
Description copied from interface:Property
Gets the child property having the given name.If the property is a scalar, this will return always null.
The given name should be the full name (i.e. prefixed name if any prefix exists).
If a non prefixed name is given, the first child property having the given local name will be returned.
Relative paths are not resolved. THis method is intended to lookup direct children. For path lookups use
Property.resolvePath(String)
instead.- Specified by:
get
in interfaceProperty
- Parameters:
name
- the child property name (the full name including the prefix if any)- Returns:
- the child property if any null if no child property with that name is found or if the property is a scalar
- Throws:
PropertyNotFoundException
- if the child property is not found in the type definition
-
set
Description copied from interface:Property
Sets the child property having the given name.The given name should be the full name (i.e. prefixed name if any prefix exists).
If a non prefixed name is given, the first child property having the given local name will be returned.
Relative paths are not resolved. This method is intended to lookup direct children. For path lookups use
Property.resolvePath(String)
instead.- Specified by:
set
in interfaceProperty
- Parameters:
name
- the child property name (the full name including the prefix if any)property
- the child property to set- Throws:
PropertyNotFoundException
- if the child property is not found in the type definition
-
internalGetValue
- Specified by:
internalGetValue
in classAbstractProperty
- Throws:
PropertyException
-
getValueForWrite
Description copied from interface:Property
Gets the property normalized value for write.Can be different fropm
Property.getValue()
in cases where the property adapts the value it is given to store.- Specified by:
getValueForWrite
in interfaceProperty
- Overrides:
getValueForWrite
in classAbstractProperty
- Returns:
- the property value to use for write, which may be null
- Throws:
PropertyException
-
init
Description copied from interface:Property
Initializes the property with the given normalized value.The given value must be normalized - note that no check is done on that.
The phantom flag is unset by this operation.
This method should be used to initialize properties.
- Specified by:
init
in interfaceProperty
- Overrides:
init
in classAbstractProperty
- Parameters:
value
- the normalized value to set- Throws:
PropertyException
-
getDefaultValue
- Overrides:
getDefaultValue
in classAbstractProperty
-
setValue
Description copied from interface:Property
Sets this property value. The value will be first normalized and then set.For complex or list properties the value will be set recursively (as a map or list value).
- Specified by:
setValue
in interfaceProperty
- Overrides:
setValue
in classAbstractProperty
- Parameters:
value
- the value to set- Throws:
InvalidPropertyValueException
- if the given value type is not compatible with the expected value typePropertyException
-
addValue
Description copied from interface:Property
Appends a new value to the list. A new property will be created to store the given value and appended to the children list.The created property will be marked as
Property.isNew()
. -
addValue
Description copied from interface:Property
Inserts at the given position a new value to the list. A new property will be created to store the given value and appended to the children list.The created property will be marked as
Property.isNew()
. -
addEmpty
Description copied from interface:Property
Creates an empty child property and adds it as a property to the list container.This method is useful to construct lists.
-
visitChildren
- Throws:
PropertyException
-
isSameAs
Should be used by container properties. Non container props must overwrite this.- Specified by:
isSameAs
in interfaceProperty
- Returns:
- true If the properties have a similar content, otherwise false
- Throws:
PropertyException
-
getDirtyChildren
Description copied from interface:Property
Gets an iterator over the dirty children properties.- Specified by:
getDirtyChildren
in interfaceProperty
- Returns:
- the iterator
-
clear
public void clear()Throws UnsupportedOperationException, added to implement Map<String, Property> interface. -
containsKey
Throws UnsupportedOperationException, added to implement Map<String, Property> interface.- Specified by:
containsKey
in interfaceMap<String,
Property>
-
containsValue
Throws UnsupportedOperationException, added to implement Map<String, Property> interface.- Specified by:
containsValue
in interfaceMap<String,
Property>
-
entrySet
-
get
-
isEmpty
public boolean isEmpty() -
keySet
-
put
Throws UnsupportedOperationException, added to implement Map<String, Property> interface. -
putAll
Throws UnsupportedOperationException, added to implement Map<String, Property> interface. -
remove
Throws UnsupportedOperationException, added to implement Map<String, Property> interface. -
values
-
clearDirtyFlags
public void clearDirtyFlags()Description copied from interface:Property
Notify the property that its changes was stored so it can safely remove dirty flags.Dirty flags are removed according to the type of the modifications. This way if the property was REMOVED it becomes a PHANTOM otherwise all dirty flags are cleared.
This method should be used by storage implementors to notify the property it should reset its dirty flags. Note that clearing dirty flags is not propagated to the parent property or to children. You need to clear dirty flags explicitly for each property.
- Specified by:
clearDirtyFlags
in interfaceProperty
- Overrides:
clearDirtyFlags
in classAbstractProperty
-