public class RemoteAsyncConnectorFacade extends AbstractConnectorFacade implements AsyncConnectorFacade
MSG
NO_TIMEOUT
Modifier | Constructor and Description |
---|---|
|
RemoteAsyncConnectorFacade(APIConfigurationImpl configuration) |
protected |
RemoteAsyncConnectorFacade(APIConfigurationImpl configuration,
org.forgerock.util.Function<LoadBalancingConnectorFacadeContext,APIConfiguration,RuntimeException> transformer) |
|
RemoteAsyncConnectorFacade(RemoteConnectorInfoImpl firstConnectorInfo,
org.forgerock.util.Function<LoadBalancingConnectorFacadeContext,APIConfiguration,RuntimeException> transformer) |
Modifier and Type | Method and Description |
---|---|
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
addAttributeValuesAsync(ObjectClass objectClass,
Uid uid,
Set<Attribute> valuesToAdd,
OperationOptions options)
Update the object specified by the
ObjectClass and Uid ,
adding to the current values of each attribute the values provided. |
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
authenticateAsync(ObjectClass objectClass,
String username,
GuardedString password,
OperationOptions options)
Most basic authentication available.
|
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
createAsync(ObjectClass objectClass,
Set<Attribute> createAttributes,
OperationOptions options)
Create a target object based on the specified attributes.
|
<T extends APIOperation> |
createLogging(Class<? extends APIOperation> api,
T target) |
org.forgerock.util.promise.Promise<Void,RuntimeException> |
deleteAsync(ObjectClass objectClass,
Uid uid,
OperationOptions options)
Delete the object that the specified Uid identifies (if any).
|
protected <T extends APIOperation> |
getAsyncOperationCheckSupported(Class<T> api) |
org.forgerock.util.promise.Promise<ConnectorObject,RuntimeException> |
getObjectAsync(ObjectClass objectClass,
Uid uid,
OperationOptions options)
Get a particular
ConnectorObject
based on the Uid . |
protected APIOperation |
getOperationImplementation(Class<? extends APIOperation> api)
Gets the implementation of the given operation.
|
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
removeAttributeValuesAsync(ObjectClass objectClass,
Uid uid,
Set<Attribute> valuesToRemove,
OperationOptions options)
Update the object specified by the
ObjectClass and Uid ,
removing from the current values of each attribute the values provided. |
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
resolveUsernameAsync(ObjectClass objectClass,
String username,
OperationOptions options)
Resolve the given
authentication username to the corresponding
Uid . |
org.forgerock.util.promise.Promise<Object,RuntimeException> |
runScriptOnConnectorAsync(ScriptContext request,
OperationOptions options)
Runs the script.
|
org.forgerock.util.promise.Promise<Object,RuntimeException> |
runScriptOnResourceAsync(ScriptContext request,
OperationOptions options)
Runs a script on a specific target resource.
|
org.forgerock.util.promise.Promise<Schema,RuntimeException> |
schemaAsync()
Retrieve the basic schema of this
Connector . |
org.forgerock.util.promise.Promise<Void,RuntimeException> |
testAsync()
Tests the
Configuration with the connector. |
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
updateAsync(ObjectClass objectClass,
Uid uid,
Set<Attribute> replaceAttributes,
OperationOptions options)
Update the object specified by the
ObjectClass and
Uid , replacing
the current values of each attribute with the values provided. |
org.forgerock.util.promise.Promise<Void,RuntimeException> |
validateAsync()
Validates the
configuration . |
addAttributeValues, authenticate, create, createLoggingProxy, createTimeoutProxy, delete, executeBatch, getAPIConfiguration, getConnectorFacadeKey, getLatestSyncToken, getObject, getOperation, getSupportedOperations, newAPIOperationProxy, queryBatch, removeAttributeValues, resolveUsername, runScriptOnConnector, runScriptOnResource, schema, search, subscribe, subscribe, sync, test, update, validate
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getConnectorFacadeKey, getOperation, getSupportedOperations
executeBatch, queryBatch
search
getLatestSyncToken, sync
subscribe
subscribe
authenticate
create
delete
resolveUsername
schema
runScriptOnConnector
runScriptOnResource
addAttributeValues, removeAttributeValues, update
validate
protected RemoteAsyncConnectorFacade(APIConfigurationImpl configuration, org.forgerock.util.Function<LoadBalancingConnectorFacadeContext,APIConfiguration,RuntimeException> transformer)
public RemoteAsyncConnectorFacade(RemoteConnectorInfoImpl firstConnectorInfo, org.forgerock.util.Function<LoadBalancingConnectorFacadeContext,APIConfiguration,RuntimeException> transformer)
public RemoteAsyncConnectorFacade(APIConfigurationImpl configuration)
public <T extends APIOperation> T createLogging(Class<? extends APIOperation> api, T target)
protected <T extends APIOperation> T getAsyncOperationCheckSupported(Class<T> api)
protected APIOperation getOperationImplementation(Class<? extends APIOperation> api)
AbstractConnectorFacade
getOperationImplementation
in class AbstractConnectorFacade
api
- The operation to implement.public org.forgerock.util.promise.Promise<Uid,RuntimeException> authenticateAsync(ObjectClass objectClass, String username, GuardedString password, OperationOptions options)
AuthenticationAsyncApiOp
authenticateAsync
in interface AuthenticationAsyncApiOp
objectClass
- The object class to use for authenticate. Will typically be an
account. Must not be null.username
- string that represents the account or user id.password
- string that represents the password for the account or user.options
- additional options that impact the way this operation is run.
May be null.public org.forgerock.util.promise.Promise<Uid,RuntimeException> createAsync(ObjectClass objectClass, Set<Attribute> createAttributes, OperationOptions options)
CreateAsyncApiOp
ObjectClass
. The Connector
itself may require
additional attributes. The API will confirm that the set contains the
ObjectClass
attribute and that no two attributes in the set
have the same name
.createAsync
in interface CreateAsyncApiOp
objectClass
- the type of object to create. Must not be null.createAttributes
- includes all the attributes necessary to create the target
object (including the ObjectClass
attribute).options
- additional options that impact the way this operation is run.
May be null.public org.forgerock.util.promise.Promise<Void,RuntimeException> deleteAsync(ObjectClass objectClass, Uid uid, OperationOptions options)
DeleteAsyncApiOp
deleteAsync
in interface DeleteAsyncApiOp
objectClass
- type of object to delete.uid
- The unique id that specifies the object to delete.options
- additional options that impact the way this operation is run.
May be null.public org.forgerock.util.promise.Promise<ConnectorObject,RuntimeException> getObjectAsync(ObjectClass objectClass, Uid uid, OperationOptions options)
GetAsyncApiOp
ConnectorObject
based on the Uid
.getObjectAsync
in interface GetAsyncApiOp
objectClass
- type of object to get.uid
- the unique id of the object that to get.options
- additional options that impact the way this operation is run.
May be null.ConnectorObject
based on the
Uid
provided or null
if no such object could be found.public org.forgerock.util.promise.Promise<Uid,RuntimeException> resolveUsernameAsync(ObjectClass objectClass, String username, OperationOptions options)
ResolveUsernameAsyncApiOp
authentication
username to the corresponding
Uid
.
The Uid
is the one that
AuthenticationApiOp.authenticate(org.identityconnectors.framework.common.objects.ObjectClass, java.lang.String, org.identityconnectors.common.security.GuardedString, org.identityconnectors.framework.common.objects.OperationOptions)
would return in case of a successful authentication.resolveUsernameAsync
in interface ResolveUsernameAsyncApiOp
objectClass
- The object class to use for authenticate. Will typically be an
account. Must not be null.username
- string that represents the account or user id.options
- additional options that impact the way this operation is run.
May be null.public org.forgerock.util.promise.Promise<Schema,RuntimeException> schemaAsync()
SchemaAsyncApiOp
Connector
.schemaAsync
in interface SchemaAsyncApiOp
public org.forgerock.util.promise.Promise<Object,RuntimeException> runScriptOnConnectorAsync(ScriptContext request, OperationOptions options)
ScriptOnConnectorAsyncApiOp
runScriptOnConnectorAsync
in interface ScriptOnConnectorAsyncApiOp
request
- The script and arguments to run.options
- Additional options that control how the script is run. The
framework does not currently recognize any options but
specific connectors might. Consult the documentation for each
connector to identify supported options.for a list of supported return types.
public org.forgerock.util.promise.Promise<Object,RuntimeException> runScriptOnResourceAsync(ScriptContext request, OperationOptions options)
ScriptOnResourceAsyncApiOp
runScriptOnResourceAsync
in interface ScriptOnResourceAsyncApiOp
request
- The script and arguments to run.options
- Additional options which control how the script is run. Please
refer to the connector documentation for supported options.ObjectSerializerFactory
for a list of supported return types.public org.forgerock.util.promise.Promise<Void,RuntimeException> testAsync()
TestAsyncApiOp
Configuration
with the connector.testAsync
in interface TestAsyncApiOp
public org.forgerock.util.promise.Promise<Uid,RuntimeException> updateAsync(ObjectClass objectClass, Uid uid, Set<Attribute> replaceAttributes, OperationOptions options)
UpdateAsyncApiOp
ObjectClass
and
Uid
, replacing
the current values of each attribute with the values provided.
For each input attribute, replace all of the current values of that attribute in the target object with the values of that attribute.
If the target object does not currently contain an attribute that the input set contains, then add this attribute (along with the provided values) to the target object.
If the value of an attribute in the input set is null
, then do
one of the following, depending on which is most appropriate for the
target:
null
.updateAsync
in interface UpdateAsyncApiOp
objectClass
- the type of object to modify. Must not be null.uid
- the uid of the object to modify. Must not be null.replaceAttributes
- set of new
Attribute
. the values in this set represent the new, merged values to
be applied to the object. This set may also include
operational attributes
. Must not be null.options
- additional options that impact the way this operation is run.
May be null.Uid
of the updated object in case the update changes the formation of
the unique identifier.public org.forgerock.util.promise.Promise<Uid,RuntimeException> addAttributeValuesAsync(ObjectClass objectClass, Uid uid, Set<Attribute> valuesToAdd, OperationOptions options)
UpdateAsyncApiOp
ObjectClass
and Uid
,
adding to the current values of each attribute the values provided.
For each attribute that the input set contains, add to the current values of that attribute in the target object all of the values of that attribute in the input set.
NOTE that this does not specify how to handle duplicate values. The
general assumption for an attribute of a ConnectorObject
is that
the values for an attribute may contain duplicates. Therefore, in general
simply append the provided values to the current value for each
attribute.
IMPLEMENTATION NOTE: for connectors that merely implement
UpdateOp
and not
UpdateAttributeValuesOp
this method will be simulated by fetching, merging, and calling
UpdateOp.update(ObjectClass, Uid, Set, OperationOptions)
. Therefore, connector implementations are encourage to implement
UpdateAttributeValuesOp
from a performance and atomicity standpoint.
addAttributeValuesAsync
in interface UpdateAsyncApiOp
objectClass
- the type of object to modify. Must not be null.uid
- the uid of the object to modify. Must not be null.valuesToAdd
- set of Attribute
deltas. The values for the attributes
in this set represent the values to add to attributes in the
object. merged. This set must not include
operational attributes
. Must not be null.options
- additional options that impact the way this operation is run.
May be null.Uid
of the updated object in case the update changes
the formation of the unique identifier.public org.forgerock.util.promise.Promise<Uid,RuntimeException> removeAttributeValuesAsync(ObjectClass objectClass, Uid uid, Set<Attribute> valuesToRemove, OperationOptions options)
UpdateAsyncApiOp
ObjectClass
and Uid
,
removing from the current values of each attribute the values provided.
For each attribute that the input set contains, remove from the current values of that attribute in the target object any value that matches one of the values of the attribute from the input set.
NOTE that this does not specify how to handle unmatched values. The
general assumption for an attribute of a ConnectorObject
is that
the values for an attribute are merely representational state.
Therefore, the implementer should simply ignore any provided value that
does not match a current value of that attribute in the target object.
Deleting an unmatched value should always succeed.
IMPLEMENTATION NOTE: for connectors that merely implement
UpdateOp
and not
UpdateAttributeValuesOp
this method will be simulated by fetching, merging, and calling
UpdateOp.update(ObjectClass, Uid, Set, OperationOptions)
. Therefore, connector implementations are encourage to implement
UpdateAttributeValuesOp
from a performance and atomicity standpoint.
removeAttributeValuesAsync
in interface UpdateAsyncApiOp
objectClass
- the type of object to modify. Must not be null.uid
- the uid of the object to modify. Must not be null.valuesToRemove
- set of Attribute
deltas. The values for the attributes
in this set represent the values to remove from attributes in
the object. merged. This set must not include
operational attributes
. Must not be null.options
- additional options that impact the way this operation is run.
May be null.Uid
of the updated object in case the update changes
the formation of the unique identifier.public org.forgerock.util.promise.Promise<Void,RuntimeException> validateAsync()
ValidateAsyncApiOp
configuration
.validateAsync
in interface ValidateAsyncApiOp
Copyright © 2018–2025. All rights reserved.