Uses of Class
org.identityconnectors.framework.common.objects.OperationOptions
-
Packages that use OperationOptions Package Description org.identityconnectors.framework.api.operations org.identityconnectors.framework.common.objects org.identityconnectors.framework.spi.operations -
-
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, 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, String username, GuardedString password, OperationOptions options)Most basic authentication available.UidCreateApiOp. create(ObjectClass objectClass, 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).ConnectorObjectGetApiOp. getObject(ObjectClass objectClass, Uid uid, OperationOptions options)Get a particularConnectorObjectbased on theUid.voidLiveSyncApiOp. livesync(ObjectClass objectClass, LiveSyncResultsHandler handler, OperationOptions options)Request synchronization events--i.e., native changes to target objects.UidUpdateApiOp. removeAttributeValues(ObjectClass objclass, Uid uid, 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, String username, OperationOptions options)Resolve the givenauthenticationusername to the correspondingUid.ObjectScriptOnConnectorApiOp. runScriptOnConnector(ScriptContext request, OperationOptions options)Runs the script.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.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, Set<Attribute> replaceAttributes, OperationOptions options)Update the object specified by theObjectClassandUid, replacing the current values of each attribute with the values provided.Set<AttributeDelta>UpdateDeltaApiOp. updateDelta(ObjectClass objclass, Uid uid, Set<AttributeDelta> modifications, OperationOptions options) -
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, 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, String username, GuardedString password, OperationOptions options)Simple authentication with two parameters presumed to be user name and password.UidCreateOp. create(ObjectClass objectClass, 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.voidSearchOp. executeQuery(ObjectClass objectClass, T query, ResultsHandler handler, OperationOptions options)ConnectorFacade calls this method once for each native query that theSearchOp.createFilterTranslator(ObjectClass, OperationOptions)produces in response to theFilterpassed intoSearchApiOp.search(org.identityconnectors.framework.common.objects.ObjectClass, org.identityconnectors.framework.common.objects.filter.Filter, org.identityconnectors.framework.common.objects.ResultsHandler, org.identityconnectors.framework.common.objects.OperationOptions).voidLiveSyncOp. livesync(ObjectClass objectClass, LiveSyncResultsHandler handler, OperationOptions options)Request synchronization events--i.e., native changes to target objects.UidUpdateAttributeValuesOp. removeAttributeValues(ObjectClass objclass, Uid uid, 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, String username, OperationOptions options)Resolve an object to itsUidbased on its username.ObjectScriptOnConnectorOp. runScriptOnConnector(ScriptContext request, OperationOptions options)Runs the script request.ObjectScriptOnResourceOp. runScriptOnResource(ScriptContext request, OperationOptions options)Run the specified script on the target resource that this connector manages.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, Set<Attribute> replaceAttributes, OperationOptions options)Update the object specified by theObjectClassandUid, replacing the current values of each attribute with the values provided.Set<AttributeDelta>UpdateDeltaOp. updateDelta(ObjectClass objclass, Uid uid, Set<AttributeDelta> modifications, OperationOptions options)Update the object specified by theObjectClassandUid, modifying the values according to the attribute deltas.
-