Class WrapperScene
- java.lang.Object
-
- com.evolveum.midpoint.web.component.prism.show.WrapperScene
-
- All Implemented Interfaces:
Scene
,DebugDumpable
,Serializable
public class WrapperScene extends Object implements Scene
Artificial implementation of a scene 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 WrapperScene(List<? extends Scene> partialScenes, String displayNameKey, Object... displayNameParameters)
-
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()
String
getDisplayNameKey()
Object[]
getDisplayNameParameters()
@NotNull List<? extends SceneItem>
getItems()
Name
getName()
Scene
getOwner()
@NotNull List<? extends Scene>
getPartialScenes()
ItemPath
getSourceAbsPath()
PrismContainerDefinition<?>
getSourceDefinition()
ObjectDelta<?>
getSourceDelta()
Source object delta where more details can be found.ItemPath
getSourceRelPath()
Scene root path, relative to the owning scene root path.PrismContainerValue<?>
getSourceValue()
Source container value where more details can be found.int
hashCode()
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
-
-
-
-
Method Detail
-
getDisplayNameKey
public String getDisplayNameKey()
-
getDisplayNameParameters
public Object[] getDisplayNameParameters()
-
getChangeType
public ChangeType getChangeType()
- Specified by:
getChangeType
in interfaceScene
-
getPartialScenes
@NotNull public @NotNull List<? extends Scene> getPartialScenes()
- Specified by:
getPartialScenes
in interfaceScene
-
isOperational
public boolean isOperational()
- Specified by:
isOperational
in interfaceScene
-
getSourceRelPath
public ItemPath getSourceRelPath()
Description copied from interface:Scene
Scene root path, relative to the owning scene root path.- Specified by:
getSourceRelPath
in interfaceScene
-
getSourceAbsPath
public ItemPath getSourceAbsPath()
- Specified by:
getSourceAbsPath
in interfaceScene
-
getSourceValue
public PrismContainerValue<?> getSourceValue()
Description copied from interface:Scene
Source container value where more details can be found. (For scenes that display object or value add.)- Specified by:
getSourceValue
in interfaceScene
-
getSourceDefinition
public PrismContainerDefinition<?> getSourceDefinition()
- Specified by:
getSourceDefinition
in interfaceScene
-
getSourceDelta
public ObjectDelta<?> getSourceDelta()
Description copied from interface:Scene
Source object delta where more details can be found. (For scenes that display an object delta.)- Specified by:
getSourceDelta
in interfaceScene
-
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
-
-