Interface SODCheckService


public interface SODCheckService
SODCheckService is used for operations related to Segregation of Duties (SoD). This service allows
  • Checking if SOD Check is Enabled at System level
  • Checking if SOD Check is Enabled for a Request
  • Initiate SOD Check given the request Id

Below is the code snippet that shows how to get an instance of this service:
//returns an SODCheck service instance
SODCheckService sodCheckService = Platform.getService(SODCheckService.class);
//initiates SOD Check
sodCheckService.initiateSODCheck(requestId);
....

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Initiate SOD Check for a particular request.
    boolean
    Check if SOD Check is Enabled for a particular resource for which request is raised.
    boolean
    Check if SOD Check is Enabled at system level.
  • Method Details

    • isSODCheckEnabled

      boolean isSODCheckEnabled()
      Check if SOD Check is Enabled at system level. The method return true if 'XL.SoDCheckRequired' System Property is set to true.
      Returns:
      true or false based on whether sod check is enabled
    • isSODCheckApplicableForRequest

      boolean isSODCheckApplicableForRequest(String requestId)
      Check if SOD Check is Enabled for a particular resource for which request is raised. The method return true if Connector IT Resource corresponding to the target system resource for which request is raised, has 'TopologyName' parameter set to some value.
      Parameters:
      requestId - Id of the request
      Returns:
      true or false based on whether sod check is applicable for the request id
    • initiateSODCheck

      void initiateSODCheck(String requestId)
      Initiate SOD Check for a particular request. This will submit the a JMS message for the initiation of SOD Check. SOD Check will be performed for the set of entitlements present in the request dataset.
      Parameters:
      requestId - Id of the request