.NET API Reference for Oracle Identity Connector Framework 11.1.2
E41516-01
Creates a filter translator that will translate a specified filter to the native filter.

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

Syntax

C#
FilterTranslator<T> CreateFilterTranslator(
	ObjectClass oclass,
	OperationOptions options
)

Parameters

oclass
Type: Org.IdentityConnectors.Framework.Common.Objects..::..ObjectClass
The object class for the search. Will never be null.
options
Type: Org.IdentityConnectors.Framework.Common.Objects..::..OperationOptions
additional options that impact the way this operation is run. If the caller passes null, the framework will convert this into an empty set of options, so SPI need not worry about this ever being null.

Return Value

Type: FilterTranslator<(Of <(<'T>)>)>
A filter translator.

Remarks

The translated filters will be subsequently passed to Search(ObjectClass, Filter, ResultsHandler, OperationOptions)

See Also