Class ConcurrentSearchReconTask

java.lang.Object
oracle.iam.scheduler.vo.TaskSupport
com.thortech.xl.scheduler.tasks.SchedulerBaseTask
oracle.iam.connectors.icfcommon.recon.AbstractReconTask
oracle.iam.connectors.icfcommon.recon.ConcurrentSearchReconTask
All Implemented Interfaces:
Runnable, StoppableTask, oracle.iam.scheduler.vo.Task

public class ConcurrentSearchReconTask extends AbstractReconTask
Concurrent Reconciliation which uses SearchApiOp operation in its implementation

The following task parameters are supported:

  • IT Resource Name - IT Resource used for reconciliation
  • Object Type - Type of object which is reconciled, this parameter is used for creation of ObjectClass, which is provided to ICF's SearchOpApi. There is the following automatic translation implemented: User -> __ACCOUNT__, Group -> __GROUP__; every other value is simply passed as ObjectClss name
  • Filter - Filter to be used in SearchApiOp call
  • Incremental Recon Date Attribute, Incremental Recon Attribute - if the connector supports some attribute which is a good candidate for usage by incremental reconciliation, the attribute name can be specified by one of these parameters, if specified then the SearchApiOp will be executed with Filter containing GreaterThen(${IncrementalReconAttribute}, ${LatestToken}), the difference between these two paramters is that if Incremental Recon Date Attribute is specified, then Latest Token will be formatted as String
  • Latest Token - If Incremental Recon Date Attribute or Incremental Recon Attribute it will be holding the latest value of the attribute which is specified as incremental

The implementation will call SearchApiOp based on the task parameters. The connector objects returned will be added a batch until the size is equal to max size. At this point, implementation will spawn a new thread which is responsible for converting connector object batch into ReconEvent (ICF INTG intermediate objects) objects, call validation and transformation logic and finally call bulk recon API with ignore vent flag.

Author:
Manjunath Narayana
  • Constructor Details

    • ConcurrentSearchReconTask

      public ConcurrentSearchReconTask()