Class OrganizationManagerBulkResult

java.lang.Object
oracle.iam.identity.orgmgmt.vo.OrganizationManagerBulkResult
All Implemented Interfaces:
Serializable

public class OrganizationManagerBulkResult extends Object implements Serializable
The OrganizationManagerBulkResult class is a value object and contains the result of bulk operation on organization entity.
Author:
abhimanyu seth
See Also:
  • Constructor Details

    • OrganizationManagerBulkResult

      public OrganizationManagerBulkResult(String status)
      Construct OrganizationManagerBulkResult with given status status
      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

      public void setStatus(String status)
      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

      public String 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 a Map of failed result. The map contains mapping of GUID of the organization and the failure reason.
      Parameters:
      failedResults - A Map of failed result containing mapping of GUID of the organization and the failure reason.
    • getFailedResults

      public Map<String,oracle.iam.platform.kernel.ValidationFailedException> getFailedResults()
      Provides a Map 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

      public void setSucceededResults(List<String> succeededResults)
      Set the List of success result containing GUID of the organization for which operation succeeded.
      Parameters:
      succeededResults - The List of success result containing GUID of the organization for which operation succeeded.
    • getSucceededResults

      public List<String> getSucceededResults()
      Provides List 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.