Package com.thortech.xl.gc.vo.designtime
Interface OIMSchema
public interface OIMSchema
The implementation layer for this interface should exactly represent the schema of the Oracle Identity Manager system account that needs
to be reconciled or provisioned. The
TargetSchema
, once generated by the transport provider,
would be an input for the Format provider to generate the OIMSchema.
This interface should be implemented by Format Providers for Reconciliation. For provisioning, the
generic technology connector framework adapter itself provides the implementation for the same.- Version:
- 1.5, Oracle Identity Manager 9.1
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetChildMetadata
(String name) This method returns the single-valued attributes of a child dataset, corresponding to the identity account to be provisioned or reconciled.This method returns the parent attributes of the identity account to be provisioned or reconciled.String[]
This method returns the multi-valued/child attributes of the identity account to be provisioned or reconciled.
-
Method Details
-
getParentMetadata
Attribute[] getParentMetadata()This method returns the parent attributes of the identity account to be provisioned or reconciled. -
getPossibleChildren
String[] getPossibleChildren()This method returns the multi-valued/child attributes of the identity account to be provisioned or reconciled.- Returns:
- Array of names of multi-valued/child attributes(datasets).
-
getChildMetadata
This method returns the single-valued attributes of a child dataset, corresponding to the identity account to be provisioned or reconciled.
-