Interface Visualization
-
- All Superinterfaces:
DebugDumpable
,Serializable
- All Known Implementing Classes:
VisualizationImpl
,WrapperVisualization
public interface Visualization extends Serializable, DebugDumpable
-
-
Field Summary
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChangeType
getChangeType()
@NotNull List<? extends VisualizationItem>
getItems()
Name
getName()
Visualization
getOwner()
@NotNull List<? extends Visualization>
getPartialVisualizations()
ItemPath
getSourceAbsPath()
PrismContainerDefinition<?>
getSourceDefinition()
ObjectDelta<?>
getSourceDelta()
Source object delta where more details can be found.ItemPath
getSourceRelPath()
Visualization root path, relative to the owning visualization root path.PrismContainerValue<?>
getSourceValue()
Source container value where more details can be found.boolean
isBroken()
boolean
isEmpty()
boolean
isOperational()
-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDump, debugDump, debugDumpLazily, debugDumpLazily
-
-
-
-
Method Detail
-
getName
Name getName()
-
getChangeType
ChangeType getChangeType()
-
getPartialVisualizations
@NotNull @NotNull List<? extends Visualization> getPartialVisualizations()
-
getItems
@NotNull @NotNull List<? extends VisualizationItem> getItems()
-
isOperational
boolean isOperational()
-
getOwner
Visualization getOwner()
-
getSourceRelPath
ItemPath getSourceRelPath()
Visualization root path, relative to the owning visualization root path.
-
getSourceAbsPath
ItemPath getSourceAbsPath()
-
getSourceValue
PrismContainerValue<?> getSourceValue()
Source container value where more details can be found. (For visualizations that display object or value add.)
-
getSourceDefinition
PrismContainerDefinition<?> getSourceDefinition()
-
getSourceDelta
ObjectDelta<?> getSourceDelta()
Source object delta where more details can be found. (For visualization that display an object delta.)
-
isEmpty
boolean isEmpty()
-
isBroken
boolean isBroken()
-
-