.NET API Reference for Oracle Identity Connector Framework 11.1.2
E41516-01
Interface to be implemented by connectors that need to normalize certain attributes.

Namespace: Org.IdentityConnectors.Framework.Spi
Assembly: Framework (in Framework.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

C#
public interface AttributeNormalizer

Remarks

This might, for example, be used to normalize whitespace within DN's to ensure consistent filtering whether that filtering is natively on the resource or by the connector framework. For connectors implementing this interface, the method NormalizeAttribute(ObjectClass, ConnectorAttribute) will be applied to each of the following:
  1. The filter passed to SearchOp<(Of <(<'T>)>)>.
  2. The results returned from SearchOp<(Of <(<'T>)>)>.
  3. The results returned from SyncOp.
  4. The attributes passed to [!:AdvancedUpdateOp].
  5. The
     Copy imageCopy
    Uid
    returned from [!:AdvancedUpdateOp].
  6. The attributes passed to UpdateOp.
  7. The
     Copy imageCopy
    Uid
    returned from UpdateOp.
  8. The attributes passed to CreateOp.
  9. The
     Copy imageCopy
    Uid
    returned from CreateOp.
  10. The
     Copy imageCopy
    Uid
    passed to DeleteOp.

See Also