Class WrapperVisualization
- java.lang.Object
-
- com.evolveum.midpoint.web.component.prism.show.WrapperVisualization
-
- All Implemented Interfaces:
Visualization
,DebugDumpable
,Serializable
public class WrapperVisualization extends Object implements Visualization
Artificial implementation of a visualization used to hold a list of deltas. (A bit of hack, unfortunately.)- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description WrapperVisualization(LocalizableMessage displayName, List<? extends Visualization> partialVisualizations)
-
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)
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.int
hashCode()
boolean
isBroken()
boolean
isEmpty()
boolean
isOperational()
-
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
-
-
-
-
Constructor Detail
-
WrapperVisualization
public WrapperVisualization(LocalizableMessage displayName, List<? extends Visualization> partialVisualizations)
-
-
Method Detail
-
getName
public Name getName()
- Specified by:
getName
in interfaceVisualization
-
getChangeType
public ChangeType getChangeType()
- Specified by:
getChangeType
in interfaceVisualization
-
getPartialVisualizations
@NotNull public @NotNull List<? extends Visualization> getPartialVisualizations()
- Specified by:
getPartialVisualizations
in interfaceVisualization
-
getItems
@NotNull public @NotNull List<? extends VisualizationItem> getItems()
- Specified by:
getItems
in interfaceVisualization
-
isOperational
public boolean isOperational()
- Specified by:
isOperational
in interfaceVisualization
-
getOwner
public Visualization getOwner()
- Specified by:
getOwner
in interfaceVisualization
-
getSourceRelPath
public ItemPath getSourceRelPath()
Description copied from interface:Visualization
Visualization root path, relative to the owning visualization root path.- Specified by:
getSourceRelPath
in interfaceVisualization
-
getSourceAbsPath
public ItemPath getSourceAbsPath()
- Specified by:
getSourceAbsPath
in interfaceVisualization
-
getSourceValue
public PrismContainerValue<?> getSourceValue()
Description copied from interface:Visualization
Source container value where more details can be found. (For visualizations that display object or value add.)- Specified by:
getSourceValue
in interfaceVisualization
-
getSourceDefinition
public PrismContainerDefinition<?> getSourceDefinition()
- Specified by:
getSourceDefinition
in interfaceVisualization
-
getSourceDelta
public ObjectDelta<?> getSourceDelta()
Description copied from interface:Visualization
Source object delta where more details can be found. (For visualization that display an object delta.)- Specified by:
getSourceDelta
in interfaceVisualization
-
isBroken
public boolean isBroken()
- Specified by:
isBroken
in interfaceVisualization
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interfaceVisualization
-
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
- Returns:
- content of the object intended for diagnostics by system administrator.
-
debugDump
public String debugDump(int indent)
- Specified by:
debugDump
in interfaceDebugDumpable
-
-