Class IgnoreSourceItemMerger
- java.lang.Object
-
- com.evolveum.midpoint.schema.merger.IgnoreSourceItemMerger
-
- All Implemented Interfaces:
ItemMerger
public class IgnoreSourceItemMerger extends Object implements ItemMerger
Ignores the value in the source object.
-
-
Field Summary
Fields Modifier and Type Field Description static IgnoreSourceItemMerger
INSTANCE
-
Constructor Summary
Constructors Constructor Description IgnoreSourceItemMerger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
merge(@NotNull ItemName itemName, @NotNull PrismContainerValue<?> target, @NotNull PrismContainerValue<?> source)
Merges all data about specific item (named `itemName`) from `source` container value to `target` one, according to (its own) strategy.
-
-
-
Field Detail
-
INSTANCE
public static final IgnoreSourceItemMerger INSTANCE
-
-
Method Detail
-
merge
public void merge(@NotNull @NotNull ItemName itemName, @NotNull @NotNull PrismContainerValue<?> target, @NotNull @NotNull PrismContainerValue<?> source) throws ConfigurationException
Description copied from interface:ItemMerger
Merges all data about specific item (named `itemName`) from `source` container value to `target` one, according to (its own) strategy. So, `source` is not modified; the `target` is. The implementation is responsible for setting origin information on all prism values copied from `source` to `target`.- Specified by:
merge
in interfaceItemMerger
- Throws:
ConfigurationException
-
-