Class CreateBatchTask
java.lang.Object
org.identityconnectors.framework.api.operations.batch.CreateBatchTask
-
Constructor Summary
ConstructorsConstructorDescriptionCreateBatchTask(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. TheConnectoritself may require additional attributes. The API will confirm that the set contains theObjectClassattribute 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 theObjectClassattribute).options- additional options that impact the way this operation is run.
-
-
Method Details