Interface VisualizationDeltaItem
-
- All Superinterfaces:
Serializable
,VisualizationItem
public interface VisualizationDeltaItem extends VisualizationItem, Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull List<? extends VisualizationItemValue>
getAddedValues()
@NotNull List<? extends VisualizationItemValue>
getDeletedValues()
@NotNull List<? extends VisualizationItemValue>
getOldValues()
ItemDelta<?,?>
getSourceDelta()
Item delta (if applicable).@NotNull List<? extends VisualizationItemValue>
getUnchangedValues()
-
Methods inherited from interface com.evolveum.midpoint.model.api.visualizer.VisualizationItem
getName, getNewValues, getSourceItem, getSourceRelPath, isDescriptive, isOperational
-
-
-
-
Method Detail
-
getOldValues
@NotNull @NotNull List<? extends VisualizationItemValue> getOldValues()
-
getAddedValues
@NotNull @NotNull List<? extends VisualizationItemValue> getAddedValues()
-
getDeletedValues
@NotNull @NotNull List<? extends VisualizationItemValue> getDeletedValues()
-
getUnchangedValues
@NotNull @NotNull List<? extends VisualizationItemValue> getUnchangedValues()
-
getSourceDelta
ItemDelta<?,?> getSourceDelta()
Item delta (if applicable). It should contain the original path (not a relative one).
-
-