Class PrismPropertyImpl<T>

All Implemented Interfaces:
Freezable, Item<PrismPropertyValue<T>,PrismPropertyDefinition<T>>, Itemable, ItemDefinitionTransformer.TransformableItem, ParentVisitable, PathVisitable, PrismProperty<T>, Revivable, Visitable, DebugDumpable, Serializable
Direct Known Subclasses:
ShadowSimpleAttributeImpl

public class PrismPropertyImpl<T> extends ItemImpl<PrismPropertyValue<T>,PrismPropertyDefinition<T>> implements PrismProperty<T>
Property is a specific characteristic of an object. It may be considered object "attribute" or "field". For example User has fullName property that contains string value of user's full name.

Properties may be single-valued or multi-valued

Properties may contain primitive types or complex types (defined by XSD schema)

Property values are unordered, implementation may change the order of values

Duplicate values of properties should be silently removed by implementations, but clients must be able tolerate presence of duplicate values.

Operations that modify the objects work with the granularity of properties. They add/remove/replace the values of properties, but do not "see" inside the property.

Property is mutable.

Author:
Radovan Semancik
See Also: