Package com.evolveum.midpoint.repo.api
Class DeleteObjectResult
- java.lang.Object
-
- com.evolveum.midpoint.repo.api.DeleteObjectResult
-
- All Implemented Interfaces:
RepositoryOperationResult
public class DeleteObjectResult extends Object implements RepositoryOperationResult
Contains information about object deletion result; primarily needed by repository caching algorithms. Because it is bound to the current (SQL) implementation of the repository, avoid using this information for any other purposes.EXPERIMENTAL.
-
-
Constructor Summary
Constructors Constructor Description DeleteObjectResult(String objectTextRepresentation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ChangeType
getChangeType()
String
getObjectTextRepresentation()
The textual representation of the object as stored in repository.
-
-
-
Constructor Detail
-
DeleteObjectResult
public DeleteObjectResult(String objectTextRepresentation)
-
-
Method Detail
-
getObjectTextRepresentation
public String getObjectTextRepresentation()
The textual representation of the object as stored in repository. It is to be parsed when really necessary. Note that it does not contain information that is stored elsewhere (user photo, lookup table rows, certification cases, task result, etc).
-
getChangeType
public ChangeType getChangeType()
- Specified by:
getChangeType
in interfaceRepositoryOperationResult
-
-