Class OrganizationManagerResult

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

public class OrganizationManagerResult extends Object implements Serializable
The OrganizationManagerResult class is a value object class containing the result of an operation on Organization entity.
Author:
abhimanyu seth
See Also:
  • Constructor Details

    • OrganizationManagerResult

      public OrganizationManagerResult()
      Construct a blank OrganizationManagerResult
    • OrganizationManagerResult

      public OrganizationManagerResult(String entityId, String status, String errorCode)
      Construct OrganizationManagerResult with given GUID entityId, status status and error code errorCode
      Parameters:
      entityId - The GUID of the Organization
      status - The status of the result. The status is 'COMPLETED' if the operation is successful.
      errorCode - The reason of failure
  • Method Details

    • getEntityId

      public String getEntityId()
      Returns the GUID of the Organization the result belongs to.
      Returns:
      The GUID of the Organization the result belongs to.
    • getStatus

      public String getStatus()
      Returns the result status of the operation.
      Returns:
      The result status of the operation. The status is 'COMPLETED' if the operation is successful.
    • getErrorCode

      public String getErrorCode()
      Returns the error code. Used when the operation failed.
      Returns:
      The error code associated with exception.