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 String
debugDump()
Show the content of the object intended for diagnostics by system administrator.String
debugDump(int indent)
boolean
equals(Object o)
List<SceneItemValueImpl>
getAddedValues()
List<SceneItemValueImpl>
getDeletedValues()
List<? extends SceneItemValue>
getOldValues()
ItemDelta<?,?>
getSourceDelta()
Item delta (if applicable).List<SceneItemValueImpl>
getUnchangedValues()
int
hashCode()
void
setAddedValues(List<SceneItemValueImpl> addedValues)
void
setDeletedValues(List<SceneItemValueImpl> deletedValues)
void
setOldValues(List<SceneItemValueImpl> oldValues)
void
setSourceDelta(ItemDelta<?,?> sourceDelta)
void
setUnchangedValues(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:
getOldValues
in interfaceSceneDeltaItem
-
setOldValues
public void setOldValues(@NotNull List<SceneItemValueImpl> oldValues)
-
getAddedValues
@NotNull public List<SceneItemValueImpl> getAddedValues()
- Specified by:
getAddedValues
in interfaceSceneDeltaItem
-
setAddedValues
public void setAddedValues(@NotNull List<SceneItemValueImpl> addedValues)
-
getDeletedValues
@NotNull public List<SceneItemValueImpl> getDeletedValues()
- Specified by:
getDeletedValues
in interfaceSceneDeltaItem
-
setDeletedValues
public void setDeletedValues(@NotNull List<SceneItemValueImpl> deletedValues)
-
getUnchangedValues
@NotNull public List<SceneItemValueImpl> getUnchangedValues()
- Specified by:
getUnchangedValues
in interfaceSceneDeltaItem
-
setUnchangedValues
public void setUnchangedValues(@NotNull List<SceneItemValueImpl> unchangedValues)
-
getSourceDelta
public ItemDelta<?,?> getSourceDelta()
Description copied from interface:SceneDeltaItem
Item delta (if applicable). It should contain the original path (not a relative one).- Specified by:
getSourceDelta
in interfaceSceneDeltaItem
-
setSourceDelta
public void setSourceDelta(ItemDelta<?,?> sourceDelta)
-
debugDump
public String debugDump()
Description copied from interface:DebugDumpable
Show 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:
debugDump
in interfaceDebugDumpable
- Overrides:
debugDump
in classSceneItemImpl
- Returns:
- content of the object intended for diagnostics by system administrator.
-
debugDump
public String debugDump(int indent)
- Specified by:
debugDump
in interfaceDebugDumpable
- Overrides:
debugDump
in classSceneItemImpl
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classSceneItemImpl
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classSceneItemImpl
-
-