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 Summary
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING -
Method Summary
Modifier 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.DebugDumpable
debugDump, debugDumpLazily, debugDumpLazilyMethods inherited from interface com.evolveum.midpoint.prism.Freezable
checkImmutable, checkMutable, freezeMethods inherited from interface com.evolveum.midpoint.prism.delta.ItemDelta
accept, 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.PrismContextSensitive
getPrismContext
-
Method Details
-
getPropertyDefinition
PrismPropertyDefinition<T> getPropertyDefinition() -
setPropertyDefinition
-
setDefinition
- Specified by:
setDefinitionin interfaceItemDelta<PrismPropertyValue<T>,PrismPropertyDefinition<T>>
-
applyDefinition
- Specified by:
applyDefinitionin interfaceItemDelta<PrismPropertyValue<T>,PrismPropertyDefinition<T>> - Throws:
SchemaException
-
getItemClass
Class<PrismProperty> getItemClass()- Specified by:
getItemClassin interfaceItemDelta<PrismPropertyValue<T>,PrismPropertyDefinition<T>>
-
getValues
Returns all values regardless of whether they are added or removed or replaced. Useful for iterating over all the changed values. -
getAnyRealValue
T getAnyRealValue() -
instantiateEmptyProperty
-
isApplicableToType
-
clone
PropertyDelta<T> clone()- Specified by:
clonein interfaceItemDelta<PrismPropertyValue<T>,PrismPropertyDefinition<T>>
-
isRealValueToAdd
-
isRealValueToDelete
-
getPropertyNewMatchingPath
Returns the "new" state of the property - the state that would be after the delta is applied.- Throws:
SchemaException
-
getPropertyNewMatchingPath
Returns the "new" state of the property - the state that would be after the delta is applied.- Throws:
SchemaException
-
narrow
PropertyDelta<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 interfaceItemDelta<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
-