.NET API Reference for Oracle Identity Connector Framework 11.1.2
E41516-01
The Connector developer is responsible for taking the attributes given (which always includes the ObjectClass) and create an object and its Uid.

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

Syntax

C#
Uid Create(
	ObjectClass oclass,
	ICollection<ConnectorAttribute> attrs,
	OperationOptions options
)

Parameters

oclass
Type: Org.IdentityConnectors.Framework.Common.Objects..::..ObjectClass
attrs
Type: System.Collections.Generic..::..ICollection<(Of <(<'ConnectorAttribute>)>)>
includes all the attributes necessary to create the resource object including the ObjectClass attribute.
options
Type: Org.IdentityConnectors.Framework.Common.Objects..::..OperationOptions

Return Value

Type: Uid
the unique id for the object that is created. For instance in LDAP this would be the 'dn', for a database this would be the primary key, and for 'ActiveDirectory' this would be the GUID.

Remarks

The Connector developer must return the Uid so that the caller can refer to the created object.

See Also