Interface PropertyDelta<T>
- All Superinterfaces:
- DebugDumpable,- Foreachable<PrismPropertyValue<T>>,- Freezable,- Itemable,- ItemDelta<PrismPropertyValue<T>,,- PrismPropertyDefinition<T>> - PathVisitable,- PrismContextSensitive,- Serializable,- Visitable
public interface PropertyDelta<T>
extends ItemDelta<PrismPropertyValue<T>,PrismPropertyDefinition<T>> 
Relative difference (delta) of a property values.
 
This class describes what values are to be added, removed or replaced in the property. The delta can be either add+delete or replace, but not both. It either describes what values to add and delete from the property (add+delete) or what is the new set of values (replace). Add+delete deltas can be merged without a loss. There are ideal for multi-value properties. If replace deltas are merged, only the last value will be present. These are better suited for single-value properties.
- Author:
- Radovan Semancik
- See Also:
- 
Field SummaryFields inherited from interface com.evolveum.midpoint.util.DebugDumpableINDENT_STRING
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddRealValuesToAdd(Collection<T> newValues) voidaddRealValuesToAdd(T... newValues) voidaddRealValuesToDelete(Collection<T> values) voidaddRealValuesToDelete(T... newValues) voidapplyDefinition(PrismPropertyDefinition<T> definition) clone()Returns the "new" state of the property - the state that would be after the delta is applied.getPropertyNewMatchingPath(PrismProperty<T> propertyOld) Returns the "new" state of the property - the state that would be after the delta is applied.<T> Collection<PrismPropertyValue<T>>Returns all values regardless of whether they are added or removed or replaced.<P extends PrismProperty>
 PbooleanisApplicableToType(Item item) booleanisRealValueToAdd(PrismPropertyValue<?> value) booleanisRealValueToDelete(PrismPropertyValue<?> value) narrow(PrismObject<? extends Objectable> object, @NotNull Comparator<PrismPropertyValue<T>> plusComparator, @NotNull Comparator<PrismPropertyValue<T>> minusComparator, boolean assumeMissingItems) Returns the narrowed delta that will have the same effect on the object as the current one.voidsetDefinition(PrismPropertyDefinition<T> definition) voidsetPropertyDefinition(PrismPropertyDefinition<T> propertyDefinition) voidsetRealValuesToReplace(T... newValues) Methods inherited from interface com.evolveum.midpoint.util.DebugDumpabledebugDump, debugDumpLazily, debugDumpLazilyMethods inherited from interface com.evolveum.midpoint.prism.FreezablecheckImmutable, checkMutable, freezeMethods inherited from interface com.evolveum.midpoint.prism.delta.ItemDeltaaccept, accept, accept, addEstimatedOldValue, addEstimatedOldValues, addEstimatedOldValues, addsAnyValue, addToReplaceDelta, addValuesToAdd, addValuesToAdd, addValuesToDelete, addValuesToDelete, addValueToAdd, addValueToDelete, addValueToReplace, applyDefinition, applyTo, applyTo, applyToMatchingPath, assertDefinitions, assertDefinitions, checkConsistence, checkConsistence, checkConsistence, clear, clearValuesToAdd, clearValuesToDelete, clearValuesToReplace, cloneWithChangedParentPath, contains, contains, createReverseDelta, debugDump, distributeReplace, equals, equivalent, filterValues, filterYields, findValueToAddOrReplace, foreach, getAnyValue, getDefinition, getElementName, getEstimatedOldValues, getItemNew, getItemNew, getItemNewMatchingPath, getParentPath, getPath, getRealValuesToAdd, getRealValuesToDelete, getRealValuesToReplace, getSubDelta, getValueChanges, getValuesToAdd, getValuesToDelete, getValuesToReplace, hasCompleteDefinition, isAdd, isApplicableTo, isDelete, isEmpty, isImmutable, isLiterallyEmpty, isOperational, isRaw, isRedundant, isReplace, isValueToAdd, isValueToDelete, isValueToReplace, merge, mergeValuesToAdd, mergeValuesToAdd, mergeValuesToDelete, mergeValuesToDelete, mergeValuesToReplace, mergeValuesToReplace, mergeValueToAdd, mergeValueToDelete, mergeValueToReplace, normalize, removeValueToAdd, removeValueToDelete, removeValueToReplace, resetValuesToAdd, resetValuesToDelete, resetValuesToReplace, revive, setElementName, setEstimatedOldValues, setOriginTypeRecursive, setParentPath, setValuesToReplace, setValuesToReplace, setValueToReplace, setValueToReplace, simplify, size, toDeltaSetTriple, toString, validate, validate, validateValues, validateValuesMethods inherited from interface com.evolveum.midpoint.prism.PrismContextSensitivegetPrismContext
- 
Method Details- 
getPropertyDefinitionPrismPropertyDefinition<T> getPropertyDefinition()
- 
setPropertyDefinition
- 
setDefinition- Specified by:
- setDefinitionin interface- ItemDelta<PrismPropertyValue<T>,- PrismPropertyDefinition<T>> 
 
- 
applyDefinition- Specified by:
- applyDefinitionin interface- ItemDelta<PrismPropertyValue<T>,- PrismPropertyDefinition<T>> 
- Throws:
- SchemaException
 
- 
getItemClassClass<PrismProperty> getItemClass()- Specified by:
- getItemClassin interface- ItemDelta<PrismPropertyValue<T>,- PrismPropertyDefinition<T>> 
 
- 
getValuesReturns all values regardless of whether they are added or removed or replaced. Useful for iterating over all the changed values.
- 
getAnyRealValueT getAnyRealValue()
- 
instantiateEmptyProperty
- 
isApplicableToType
- 
clonePropertyDelta<T> clone()- Specified by:
- clonein interface- ItemDelta<PrismPropertyValue<T>,- PrismPropertyDefinition<T>> 
 
- 
isRealValueToAdd
- 
isRealValueToDelete
- 
getPropertyNewMatchingPathReturns the "new" state of the property - the state that would be after the delta is applied.- Throws:
- SchemaException
 
- 
getPropertyNewMatchingPathReturns the "new" state of the property - the state that would be after the delta is applied.- Throws:
- SchemaException
 
- 
narrowPropertyDelta<T> narrow(PrismObject<? extends Objectable> object, @NotNull @NotNull Comparator<PrismPropertyValue<T>> plusComparator, @NotNull @NotNull Comparator<PrismPropertyValue<T>> minusComparator, boolean assumeMissingItems) Returns the narrowed delta that will have the same effect on the object as the current one. Expects that the delta executor (can be e.g. the connector!) considers values equivalent if they are equal according to the specified comparator.- Specified by:
- narrowin interface- ItemDelta<PrismPropertyValue<T>,- PrismPropertyDefinition<T>> 
- plusComparator- Comparator we want to use when determining skippability of values being added.
- minusComparator- Comparator we want to use when determining skippability of values being deleted.
 
- 
setRealValuesToReplace
- 
addRealValuesToAdd
- 
addRealValuesToDelete
- 
addRealValuesToAdd
- 
addRealValuesToDelete
 
-