.NET API Reference for Oracle Identity Connector Framework 11.1.2
E41516-01
Resolve the given Authenticate(ObjectClass, String, GuardedString, OperationOptions) username to the corresponding Uid.

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

Syntax

C#
Uid ResolveUsername(
	ObjectClass objectClass,
	string username,
	OperationOptions options
)

Parameters

objectClass
Type: Org.IdentityConnectors.Framework.Common.Objects..::..ObjectClass
The object class to use for authenticate. Will typically be an account. Must not be null.
username
Type: System..::..String
string that represents the account or user id.
options
Type: Org.IdentityConnectors.Framework.Common.Objects..::..OperationOptions
additional options that impact the way this operation is run. May be null.

Return Value

Type: Uid
Uid The uid of the account that would be used to authenticate.

Remarks

The
 Copy imageCopy
Uid
is the one that Authenticate(ObjectClass, String, GuardedString, OperationOptions) would return in case of a successful authentication.

Exceptions

ExceptionCondition
System..::..Exceptioniff the username could not be resolved.

See Also