Package oracle.iam.reconciliation.api
Class InputData
java.lang.Object
oracle.iam.reconciliation.api.InputData
- All Implemented Interfaces:
Serializable
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInputData
(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.InputData
(Map<String, ? extends Serializable> reconData, ChangeType changeType, Date actionDate) The target system data which needs to be populated in OIM. -
Method Summary
-
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 OIMchangeType
- Type of event that has to be createdactionDate
- 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 OIMmultiValueData
- Multi Value Data that will be stored in OIMhasAllMultiValueData
- If it contains all the multivalue data or just a part of it which has changed.changeType
- Type of event that has to be createdactionDate
- Provide the date, if event has to be created/processed in future else null.
-
-
Method Details