Interface ReconFormatProvider


public interface ReconFormatProvider
This interface should be implemented by a layer that incorporates reconciliation functionalities with a particular type of target application, to be used by a connector created through the generic technology connector. The implementation layer should mainly deal with data format parsing and conversion of target data, structured according to relevant TargetSchema, to an Oracle Identity Manager-compatible format OIMSchema, while reconciliation. Implementation should provide facilities for not only parsing extracted data but also the detected metadata of the target accounts.Examples of the implementation for this layer would be CSV File provider, XML Provider (w.r.t a specific schema), E-Mail provider (w.r.t a specific template) etc. All the input of this layer comes from corresponding implementation of the ReconTransportProvider interface, which mainly extracts identity account data/metadata from the target applications.

 All the methods of this Interface throw ProviderException. The implementations of this
 interface should utilize this fact to wrap all possible exceptions ultimately in an instance
 of a ProviderException. Rich provider implementation layers are expected to be modular with
 the main implementation methods calling a number of methods which would be internally invoking
 more internal layers of business logic. In such a case, following a neat development approach,
 it is recommended that you wrap all the possible Exceptions from all internal layers in instances
 of ReconciliationFormatException. The main methods of the implementation (which
 are actually the ones defined in this interface) would then just have the try-catch blocks
 with catch portion for only ReconciliationTransportException and this Exception instance
 could then be wrapped in a ProviderException.
 

 As far as reconciliation is concerned, there are situations when the ReconTransportProvider
 implementation would need to take the responsibility of understanding and parsing the data format for
 the target identity accounts. In such cases, the ReconFormatProvider implementation would become
 a very simplified layer, just producing the instances of Oracle Identity Manager compliant value objects for data
  (OIMRecord) and metadata (OIMSchema).
Version:
1.4, Oracle Identity Manager 9.1
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    initialize(Provider providerdata)
    This method initializes the provider
    This method parses the target schema and returns a schema that Oracle Identity Manager understands.
    This method parses the target records and converts them into a structure that Oracle Identity Manager understands.
  • Method Details

    • initialize

      void initialize(Provider providerdata) throws ProviderException
      This method initializes the provider
      Parameters:
      providerdata - A value object that represents a provider instance. It can also be considered as a collection of provider parameter specifications. Provider parameters, runtime as well as design, could be obtained from this value object instance. Check the API documentation for Provider for more details.
      Throws:
      ProviderException
      See Also:
    • parseMetadata

      OIMSchema parseMetadata(TargetSchema schema) throws ProviderException
      This method parses the target schema and returns a schema that Oracle Identity Manager understands. It is invoked by the generic technology connector framework during metadata detection, and its input is fed by the output of ReconTransportProvider.getMetadata().
      Parameters:
      schema - A value object that represents the schema of an identity record in the target system. Check the API documentation for TargetSchema for more details.
      Returns:
      A value object that represents the schema of an identity record in Oracle Identity Manager. Check the API documentation for OIMSchema for more details.
      Throws:
      ProviderException
      See Also:
    • parseRecords

      OIMRecord[] parseRecords(TargetRecord[] records) throws ProviderException
      This method parses the target records and converts them into a structure that Oracle Identity Manager understands. It is invoked by the generic technology connector framework during reconciliation execution, and its input is fed by the output of ReconTransportProvider.getFirstPage(int, String) or ReconTransportProvider.getNextPage(int).
      Parameters:
      records - An array of value objects that represent identity records in the target system. Check the API documentation for TargetRecord for more details.
      Returns:
      An array of value objects that represent identity records in Oracle Identity Manager. The structure of these records conforms to the Reconciliation fields of the Resource Object for the relevant the generic technology connector. Check the API documentation for OIMRecord for more details.
      Throws:
      ProviderException
      See Also: