Class CreateBatchTask
java.lang.Object
org.identityconnectors.framework.api.operations.batch.CreateBatchTask
-
Constructor Summary
ConstructorDescriptionCreateBatchTask
(ObjectClass objectClass, Set<Attribute> createAttributes, OperationOptions options) Create a target object based on the specified attributes. -
Method Summary
Modifier and TypeMethodDescriptionexecute
(BatchTaskExecutor executor) Return the ObjectClass used for this task.
-
Constructor Details
-
CreateBatchTask
public CreateBatchTask(ObjectClass objectClass, Set<Attribute> createAttributes, OperationOptions options) Create a target object based on the specified attributes. The Connector framework always requires attributeObjectClass
. TheConnector
itself may require additional attributes. The API will confirm that the set contains theObjectClass
attribute and that no two attributes in the set have the samename
.- Parameters:
objectClass
- the type of object to create. Must not be null.createAttributes
- includes all the attributes necessary to create the target object (including theObjectClass
attribute).options
- additional options that impact the way this operation is run.
-
-
Method Details