Class ResourceOperationDescription
- java.lang.Object
-
- com.evolveum.midpoint.provisioning.api.ResourceOperationDescription
-
- All Implemented Interfaces:
DebugDumpable
public class ResourceOperationDescription extends Object implements DebugDumpable
Describes an attempt to apply a change to a specific resource object.- Author:
- Radovan Semancik
-
-
Field Summary
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description ResourceOperationDescription()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcheckConsistence()StringdebugDump()Show the content of the object intended for diagnostics by system administrator.StringdebugDump(int indent)intgetAttemptNumber()PrismObject<? extends ShadowType>getCurrentShadow()Shadow describing the object that was the target of the operation.ObjectDelta<? extends ShadowType>getObjectDelta()The operation that was about to execute and that has failed.PrismObject<ResourceType>getResource()OperationResultgetResult()Result of the failed operation.StringgetSourceChannel()booleanisAsynchronous()True if the operation is asynchronous.voidsetAsynchronous(boolean asynchronous)voidsetAttemptNumber(int attemptNumber)voidsetCurrentShadow(PrismObject<? extends ShadowType> currentShadow)voidsetObjectDelta(ObjectDelta<? extends ShadowType> objectDelta)voidsetResource(PrismObject<ResourceType> resource)voidsetResult(OperationResult result)voidsetSourceChannel(String sourceChannel)StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDumpLazily, debugDumpLazily
-
-
-
-
Method Detail
-
getObjectDelta
public ObjectDelta<? extends ShadowType> getObjectDelta()
The operation that was about to execute and that has failed.
-
setObjectDelta
public void setObjectDelta(ObjectDelta<? extends ShadowType> objectDelta)
-
getCurrentShadow
public PrismObject<? extends ShadowType> getCurrentShadow()
Shadow describing the object that was the target of the operation. It may a "temporary" shadow that is not yet bound to a specific resource object (e.g. in case of add operation).
-
setCurrentShadow
public void setCurrentShadow(PrismObject<? extends ShadowType> currentShadow)
-
getSourceChannel
public String getSourceChannel()
-
setSourceChannel
public void setSourceChannel(String sourceChannel)
-
getResource
public PrismObject<ResourceType> getResource()
-
setResource
public void setResource(PrismObject<ResourceType> resource)
-
getResult
public OperationResult getResult()
Result of the failed operation.
-
setResult
public void setResult(OperationResult result)
-
isAsynchronous
public boolean isAsynchronous()
True if the operation is asynchronous. I.e. true if the operation cannot provide direct return value and therefore the invocation of the listener is the only way how to pass operation return value to the upper layers. This may be useful e.g. for decided whether log the message and what log level to use (it can be assumed that the error gets logged at least once for synchronous operations, but this may be the only chance to properly log it for asynchronous operations).
-
setAsynchronous
public void setAsynchronous(boolean asynchronous)
-
getAttemptNumber
public int getAttemptNumber()
-
setAttemptNumber
public void setAttemptNumber(int attemptNumber)
-
checkConsistence
public void checkConsistence()
-
debugDump
public String debugDump()
Description copied from interface:DebugDumpableShow 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:
debugDumpin interfaceDebugDumpable- Returns:
- content of the object intended for diagnostics by system administrator.
-
debugDump
public String debugDump(int indent)
- Specified by:
debugDumpin interfaceDebugDumpable
-
-