public interface IdentityManagerResult
extends java.io.Serializable
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getEntityId()
Provides the GUID of the identity the result belongs to.
|
java.util.Map |
getFailedResults()
Provides a
Map of failed result. |
java.lang.String |
getStatus()
Provides the result status of the operation.
|
java.util.Set |
getSucceededResults()
Provides
List of success result containing GUID of the identity
for which operation succeeded. |
java.lang.String getEntityId()
java.lang.String getStatus()
java.util.Map getFailedResults()
Map
of failed result. The map contains mapping of
GUID of the identity and the failure reason. The method is intended to be used
for getting failure results for bulk operation.Map
of failed result containing mapping of GUID of
the identity and the failure reason.java.util.Set getSucceededResults()
List
of success result containing GUID of the identity
for which operation succeeded. The method is intended to be used for
getting success result for bulk operation.List
of success result containing GUID of the identity
for which operation succeeded.