Class InputData

java.lang.Object
oracle.iam.reconciliation.api.InputData
All Implemented Interfaces:
Serializable

public class InputData extends Object implements Serializable
See Also:
  • Constructor Details

    • InputData

      public InputData(Map<String,? extends Serializable> reconData, ChangeType changeType, Date actionDate)
      The target system data which needs to be populated in OIM. The reconData contains the combination of reconciliation field name and its corresponding value. The reconData supports both singlevalues and multivalued attributes so that in single call it can process all the parent and child relationships.
      Parameters:
      reconData - Data that will be stored in OIM
      changeType - Type of event that has to be created
      actionDate - Provide the date, if event has to be created/processed in future else null.
    • InputData

      public InputData(Map<String,? extends Serializable> reconData, Map<String,List<Map<String,Serializable>>> multiValueData, Boolean hasAllMultiValueData, ChangeType changeType, Date actionDate)
      The target system data which needs to be populated in OIM. The reconData contains the combination of reconciliation field name and its corresponding value. The reconData supports both singlevalues and multivalued attributes so that in single call it can process all the parent and child relationships.
      Parameters:
      reconData - Data that will be stored in OIM
      multiValueData - Multi Value Data that will be stored in OIM
      hasAllMultiValueData - If it contains all the multivalue data or just a part of it which has changed.
      changeType - Type of event that has to be created
      actionDate - Provide the date, if event has to be created/processed in future else null.
  • Method Details