Class SceneDeltaItemImpl
- java.lang.Object
-
- com.evolveum.midpoint.model.impl.visualizer.output.SceneItemImpl
-
- com.evolveum.midpoint.model.impl.visualizer.output.SceneDeltaItemImpl
-
- All Implemented Interfaces:
SceneDeltaItem,SceneItem,DebugDumpable,Serializable
public class SceneDeltaItemImpl extends SceneItemImpl implements SceneDeltaItem, DebugDumpable
- Author:
- mederly
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.evolveum.midpoint.model.impl.visualizer.output.SceneItemImpl
descriptive, name, newValues, operational, sourceItem, sourceRelPath
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description SceneDeltaItemImpl(NameImpl name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringdebugDump()Show the content of the object intended for diagnostics by system administrator.StringdebugDump(int indent)booleanequals(Object o)List<SceneItemValueImpl>getAddedValues()List<SceneItemValueImpl>getDeletedValues()List<? extends SceneItemValue>getOldValues()ItemDelta<?,?>getSourceDelta()Item delta (if applicable).List<SceneItemValueImpl>getUnchangedValues()inthashCode()voidsetAddedValues(List<SceneItemValueImpl> addedValues)voidsetDeletedValues(List<SceneItemValueImpl> deletedValues)voidsetOldValues(List<SceneItemValueImpl> oldValues)voidsetSourceDelta(ItemDelta<?,?> sourceDelta)voidsetUnchangedValues(List<SceneItemValueImpl> unchangedValues)-
Methods inherited from class com.evolveum.midpoint.model.impl.visualizer.output.SceneItemImpl
debugDumpCommon, getName, getNewValues, getSourceDefinition, getSourceItem, getSourceRelPath, isDescriptive, isOperational, setDescriptive, setNewValues, setOperational, setSourceItem, setSourceRelPath
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDumpLazily, debugDumpLazily
-
Methods inherited from interface com.evolveum.midpoint.model.api.visualizer.SceneItem
getName, getNewValues, getSourceItem, getSourceRelPath, isOperational
-
-
-
-
Constructor Detail
-
SceneDeltaItemImpl
public SceneDeltaItemImpl(NameImpl name)
-
-
Method Detail
-
getOldValues
@NotNull public List<? extends SceneItemValue> getOldValues()
- Specified by:
getOldValuesin interfaceSceneDeltaItem
-
setOldValues
public void setOldValues(@NotNull List<SceneItemValueImpl> oldValues)
-
getAddedValues
@NotNull public List<SceneItemValueImpl> getAddedValues()
- Specified by:
getAddedValuesin interfaceSceneDeltaItem
-
setAddedValues
public void setAddedValues(@NotNull List<SceneItemValueImpl> addedValues)
-
getDeletedValues
@NotNull public List<SceneItemValueImpl> getDeletedValues()
- Specified by:
getDeletedValuesin interfaceSceneDeltaItem
-
setDeletedValues
public void setDeletedValues(@NotNull List<SceneItemValueImpl> deletedValues)
-
getUnchangedValues
@NotNull public List<SceneItemValueImpl> getUnchangedValues()
- Specified by:
getUnchangedValuesin interfaceSceneDeltaItem
-
setUnchangedValues
public void setUnchangedValues(@NotNull List<SceneItemValueImpl> unchangedValues)
-
getSourceDelta
public ItemDelta<?,?> getSourceDelta()
Description copied from interface:SceneDeltaItemItem delta (if applicable). It should contain the original path (not a relative one).- Specified by:
getSourceDeltain interfaceSceneDeltaItem
-
setSourceDelta
public void setSourceDelta(ItemDelta<?,?> sourceDelta)
-
debugDump
public String debugDump()
Description copied from interface:DebugDumpableShow the content of the object intended for diagnostics by system administrator. The out put should be suitable to use in system logs at "debug" level. It may be multi-line, but in that case it should be well indented and quite terse. As it is intended to be used by system administrator, it should not use any developer terms such as class names, exceptions or stack traces.- Specified by:
debugDumpin interfaceDebugDumpable- Overrides:
debugDumpin classSceneItemImpl- Returns:
- content of the object intended for diagnostics by system administrator.
-
debugDump
public String debugDump(int indent)
- Specified by:
debugDumpin interfaceDebugDumpable- Overrides:
debugDumpin classSceneItemImpl
-
equals
public boolean equals(Object o)
- Overrides:
equalsin classSceneItemImpl
-
hashCode
public int hashCode()
- Overrides:
hashCodein classSceneItemImpl
-
-