Package oracle.iam.identity.orgmgmt.vo
Class OrganizationManagerBulkResult
java.lang.Object
oracle.iam.identity.orgmgmt.vo.OrganizationManagerBulkResult
- All Implemented Interfaces:
Serializable
The
OrganizationManagerBulkResult
class is a value object and contains the
result of bulk operation on organization entity.- Author:
- abhimanyu seth
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionOrganizationManagerBulkResult
(String status) ConstructOrganizationManagerBulkResult
with given statusstatus
-
Method Summary
Modifier and TypeMethodDescriptionProvides aMap
of failed result.Gets the status of bulk organization operation result.ProvidesList
of success result containing GUID of the organization for which operation succeeded.void
setFailedResults
(Map<String, oracle.iam.platform.kernel.ValidationFailedException> failedResults) Sets aMap
of failed result.void
Sets the status of bulk organization operation result.void
setSucceededResults
(List<String> succeededResults) Set theList
of success result containing GUID of the organization for which operation succeeded.
-
Constructor Details
-
OrganizationManagerBulkResult
ConstructOrganizationManagerBulkResult
with given statusstatus
- Parameters:
status
- The status of the result. Set status as 'COMPLETED' if the operation is successful. For bulk operation set status as 'COMPLETED' if bulk operation is successful for at least one organization.
-
-
Method Details
-
setStatus
Sets the status of bulk organization operation result.- Parameters:
status
- The status of the result. Set status as 'COMPLETED' if bulk operation is successful for at least one organization.
-
getStatus
Gets the status of bulk organization operation result.- Returns:
- The status of the result. The status is 'COMPLETED' if bulk operation is successful for at least one organization.
-
setFailedResults
public void setFailedResults(Map<String, oracle.iam.platform.kernel.ValidationFailedException> failedResults) Sets aMap
of failed result. The map contains mapping of GUID of the organization and the failure reason.- Parameters:
failedResults
- AMap
of failed result containing mapping of GUID of the organization and the failure reason.
-
getFailedResults
Provides aMap
of failed result. The map contains mapping of GUID of the organization and the failure reason.- Returns:
- A
Map
of failed result containing mapping of GUID of the organization and the failure reason.
-
setSucceededResults
Set theList
of success result containing GUID of the organization for which operation succeeded.- Parameters:
succeededResults
- TheList
of success result containing GUID of the organization for which operation succeeded.
-
getSucceededResults
ProvidesList
of success result containing GUID of the organization for which operation succeeded.- Returns:
- A
List
of success result containing GUID of the organization for which operation succeeded.
-