Class MergeDeltas<O extends ObjectType>
- java.lang.Object
-
- com.evolveum.midpoint.model.api.util.MergeDeltas<O>
-
- All Implemented Interfaces:
DebugDumpable
,Serializable
public class MergeDeltas<O extends ObjectType> extends Object implements DebugDumpable, Serializable
- Author:
- semancik
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description MergeDeltas(ObjectDelta<O> leftObjectDelta, ObjectDelta<O> leftLinkDelta, ObjectDelta<O> rightLinkDelta)
-
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 obj)
ObjectDelta<O>
getLeftLinkDelta()
ObjectDelta<O>
getLeftObjectDelta()
ObjectDelta<O>
getRightLinkDelta()
int
hashCode()
String
toString()
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDumpLazily, debugDumpLazily
-
-
-
-
Constructor Detail
-
MergeDeltas
public MergeDeltas(ObjectDelta<O> leftObjectDelta, ObjectDelta<O> leftLinkDelta, ObjectDelta<O> rightLinkDelta)
-
-
Method Detail
-
getLeftObjectDelta
public ObjectDelta<O> getLeftObjectDelta()
-
getLeftLinkDelta
public ObjectDelta<O> getLeftLinkDelta()
-
getRightLinkDelta
public ObjectDelta<O> getRightLinkDelta()
-
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
-
-