Uses of Class
org.identityconnectors.framework.common.objects.OperationOptions
-
-
Uses of OperationOptions in org.identityconnectors.framework.api.operations
Methods in org.identityconnectors.framework.api.operations with parameters of type OperationOptions Modifier and Type Method Description UidUpdateApiOp. addAttributeValues(ObjectClass objclass, Uid uid, java.util.Set<Attribute> valuesToAdd, OperationOptions options)Update the object specified by theObjectClassandUid, adding to the current values of each attribute the values provided.UidAuthenticationApiOp. authenticate(ObjectClass objectClass, java.lang.String username, GuardedString password, OperationOptions options)Most basic authentication available.UidCreateApiOp. create(ObjectClass objectClass, java.util.Set<Attribute> createAttributes, OperationOptions options)Create a target object based on the specified attributes.voidDeleteApiOp. delete(ObjectClass objectClass, Uid uid, OperationOptions options)Delete the object that the specified Uid identifies (if any).SubscriptionBatchApiOp. executeBatch(java.util.List<BatchTask> tasks, Observer<BatchResult> observer, OperationOptions options)Execute a series ofBatchTask.ConnectorObjectGetApiOp. getObject(ObjectClass objectClass, Uid uid, OperationOptions options)Get a particularConnectorObjectbased on theUid.SubscriptionBatchApiOp. queryBatch(BatchToken token, Observer<BatchResult> observer, OperationOptions options)Query an ongoing batch execution for new results.UidUpdateApiOp. removeAttributeValues(ObjectClass objclass, Uid uid, java.util.Set<Attribute> valuesToRemove, OperationOptions options)Update the object specified by theObjectClassandUid, removing from the current values of each attribute the values provided.UidResolveUsernameApiOp. resolveUsername(ObjectClass objectClass, java.lang.String username, OperationOptions options)Resolve the givenauthenticationusername to the correspondingUid.java.lang.ObjectScriptOnConnectorApiOp. runScriptOnConnector(ScriptContext request, OperationOptions options)Runs the script.java.lang.ObjectScriptOnResourceApiOp. runScriptOnResource(ScriptContext request, OperationOptions options)Runs a script on a specific target resource.SearchResultSearchApiOp. search(ObjectClass objectClass, Filter filter, ResultsHandler handler, OperationOptions options)Search the resource for all objects that match the object class and filter.SubscriptionConnectorEventSubscriptionApiOp. subscribe(ObjectClass objectClass, Filter eventFilter, Observer<ConnectorObject> handler, OperationOptions operationOptions)SubscriptionSyncEventSubscriptionApiOp. subscribe(ObjectClass objectClass, SyncToken token, Observer<SyncDelta> handler, OperationOptions operationOptions)Create a subscription to a given sync topic.SyncTokenSyncApiOp. sync(ObjectClass objectClass, SyncToken token, SyncResultsHandler handler, OperationOptions options)Request synchronization events--i.e., native changes to target objects.UidUpdateApiOp. update(ObjectClass objectClass, Uid uid, java.util.Set<Attribute> replaceAttributes, OperationOptions options)Update the object specified by theObjectClassandUid, replacing the current values of each attribute with the values provided. -
Uses of OperationOptions in org.identityconnectors.framework.api.operations.batch
Methods in org.identityconnectors.framework.api.operations.batch that return OperationOptions Modifier and Type Method Description OperationOptionsCreateBatchTask. getOptions()OperationOptionsDeleteBatchTask. getOptions()OperationOptionsUpdateBatchTask. getOptions()Methods in org.identityconnectors.framework.api.operations.batch with parameters of type OperationOptions Modifier and Type Method Description voidBatchBuilder. addCreateOp(ObjectClass objectClass, java.util.Set<Attribute> createAttributes, OperationOptions options)Add a Create operation to the batch.voidBatchBuilder. addDeleteOp(ObjectClass objectClass, Uid uid, OperationOptions options)Add a Delete operation to the batch.voidBatchBuilder. addUpdateAddOp(ObjectClass objectClass, Uid uid, java.util.Set<Attribute> attributes, OperationOptions options)Add an Update:Add operation to the batch.voidBatchBuilder. addUpdateRemoveOp(ObjectClass objectClass, Uid uid, java.util.Set<Attribute> attributes, OperationOptions options)Add an Update:Remove operation to the batch.voidBatchBuilder. addUpdateReplaceOp(ObjectClass objectClass, Uid uid, java.util.Set<Attribute> attributes, OperationOptions options)Add an Update:Replace operation to the batch.Constructors in org.identityconnectors.framework.api.operations.batch with parameters of type OperationOptions Constructor Description CreateBatchTask(ObjectClass objectClass, java.util.Set<Attribute> createAttributes, OperationOptions options)Create a target object based on the specified attributes.DeleteBatchTask(ObjectClass objectClass, Uid uid, OperationOptions options)Delete the object that the specified Uid identifies (if any).UpdateBatchTask(ObjectClass objectClass, Uid uid, java.util.Set<Attribute> replaceAttributes, OperationOptions options, UpdateType type)SeeUpdateApiOp. -
Uses of OperationOptions in org.identityconnectors.framework.common.objects
Methods in org.identityconnectors.framework.common.objects that return OperationOptions Modifier and Type Method Description OperationOptionsOperationOptionsBuilder. build()Creates theOperationOptions.Constructors in org.identityconnectors.framework.common.objects with parameters of type OperationOptions Constructor Description OperationOptionsBuilder(OperationOptions options)Create a builder from an existing set of options. -
Uses of OperationOptions in org.identityconnectors.framework.spi.operations
Methods in org.identityconnectors.framework.spi.operations with parameters of type OperationOptions Modifier and Type Method Description UidUpdateAttributeValuesOp. addAttributeValues(ObjectClass objclass, Uid uid, java.util.Set<Attribute> valuesToAdd, OperationOptions options)Update the object specified by theObjectClassandUid, adding to the current values of each attribute the values provided.UidAuthenticateOp. authenticate(ObjectClass objectClass, java.lang.String username, GuardedString password, OperationOptions options)Simple authentication with two parameters presumed to be user name and password.UidCreateOp. create(ObjectClass objectClass, java.util.Set<Attribute> createAttributes, OperationOptions options)TheConnectordeveloper is responsible for taking the attributes given (which always includes theObjectClass) and create an object and itsUid.FilterTranslator<T>SearchOp. createFilterTranslator(ObjectClass objectClass, OperationOptions options)Creates a filter translator that will translate a specifiedfilterinto one or more native queries.voidDeleteOp. delete(ObjectClass objectClass, Uid uid, OperationOptions options)TheConnectordeveloper is responsible for calling the native delete methods to remove the object specified by its unique id.SubscriptionBatchOp. executeBatch(java.util.List<BatchTask> tasks, Observer<BatchResult> observer, OperationOptions options)Execute a series ofBatchTask.voidSearchOp. executeQuery(ObjectClass objectClass, T query, ResultsHandler handler, OperationOptions options)ConnectorFacade calls this method once for each native query that the FilterTranslator produces in response to theFilterpassed intoSearchApiOp.SubscriptionBatchOp. queryBatch(BatchToken token, Observer<BatchResult> observer, OperationOptions options)Query an ongoing batch execution for new results.UidUpdateAttributeValuesOp. removeAttributeValues(ObjectClass objclass, Uid uid, java.util.Set<Attribute> valuesToRemove, OperationOptions options)Update the object specified by theObjectClassandUid, removing from the current values of each attribute the values provided.UidResolveUsernameOp. resolveUsername(ObjectClass objectClass, java.lang.String username, OperationOptions options)Resolve an object to itsUidbased on its username.java.lang.ObjectScriptOnConnectorOp. runScriptOnConnector(ScriptContext request, OperationOptions options)Runs the script request.java.lang.ObjectScriptOnResourceOp. runScriptOnResource(ScriptContext request, OperationOptions options)Run the specified script on the target resource that this connector manages.SubscriptionConnectorEventSubscriptionOp. subscribe(ObjectClass objectClass, Filter eventFilter, Observer<ConnectorObject> observer, OperationOptions operationOptions)SubscriptionSyncEventSubscriptionOp. subscribe(ObjectClass objectClass, SyncToken token, Observer<SyncDelta> observer, OperationOptions operationOptions)voidSyncOp. sync(ObjectClass objectClass, SyncToken token, SyncResultsHandler handler, OperationOptions options)Request synchronization events--i.e., native changes to target objects.UidUpdateOp. update(ObjectClass objectClass, Uid uid, java.util.Set<Attribute> replaceAttributes, OperationOptions options)Update the object specified by theObjectClassandUid, replacing the current values of each attribute with the values provided.
-