Modifier and Type | Method and Description |
---|---|
protected groovy.lang.Binding |
ScriptedPoolableConnector.createBinding(groovy.lang.Binding arguments,
OperationType action,
ObjectClass objectClass,
Uid uid,
Set<Attribute> attributes,
OperationOptions options) |
Modifier and Type | Method and Description |
---|---|
protected groovy.lang.Binding |
ScriptedCRESTConnector.createBinding(groovy.lang.Binding arguments,
OperationType action,
ObjectClass objectClass,
Uid uid,
Set<Attribute> attributes,
OperationOptions options) |
Modifier and Type | Method and Description |
---|---|
protected groovy.lang.Binding |
ScriptedRESTConnector.createBinding(groovy.lang.Binding arguments,
OperationType action,
ObjectClass objectClass,
Uid uid,
Set<Attribute> attributes,
OperationOptions options) |
Modifier and Type | Method and Description |
---|---|
Uid |
XMLConnector.authenticate(ObjectClass objClass,
String username,
GuardedString password,
OperationOptions options) |
Uid |
XMLConnector.create(ObjectClass objClass,
Set<Attribute> attributes,
OperationOptions options) |
FilterTranslator<Query> |
XMLConnector.createFilterTranslator(ObjectClass objClass,
OperationOptions options) |
void |
XMLConnector.delete(ObjectClass objClass,
Uid uid,
OperationOptions options) |
void |
XMLConnector.executeQuery(ObjectClass objClass,
Query query,
ResultsHandler handler,
OperationOptions options) |
Uid |
XMLConnector.update(ObjectClass objClass,
Uid uid,
Set<Attribute> replaceAttributes,
OperationOptions options) |
Modifier and Type | Method and Description |
---|---|
Uid |
CSVFileConnector.addAttributeValues(ObjectClass objectClass,
Uid uid,
Set<Attribute> attributes,
OperationOptions options)
Update the object specified by the
ObjectClass and Uid ,
adding to the current values of each attribute the values provided. |
Uid |
CSVFileConnector.authenticate(ObjectClass objectClass,
String userName,
GuardedString password,
OperationOptions options)
Simple authentication with two parameters presumed to be user name and
password.
|
Uid |
CSVFileConnector.create(ObjectClass objectClass,
Set<Attribute> createAttributes,
OperationOptions options)
The
Connector developer is responsible for taking the attributes
given (which always includes the ObjectClass ) and create an
object and its Uid . |
FilterTranslator<Filter> |
CSVFileConnector.createFilterTranslator(ObjectClass objectClass,
OperationOptions options)
Creates a filter translator that will translate a specified
filter into one or more native queries. |
void |
CSVFileConnector.delete(ObjectClass objectClass,
Uid uid,
OperationOptions options)
The
Connector developer is responsible for calling the native
delete methods to remove the object specified by its unique id. |
Subscription |
CSVFileConnector.executeBatch(List<BatchTask> batchTasks,
Observer<BatchResult> observer,
OperationOptions operationOptions)
Execute a series of
BatchTask . |
void |
CSVFileConnector.executeQuery(ObjectClass objectClass,
Filter query,
ResultsHandler handler,
OperationOptions options)
ConnectorFacade calls this method once for each native query that the
FilterTranslator produces in response to the
Filter passed
into
SearchApiOp . |
Subscription |
CSVFileConnector.queryBatch(BatchToken batchToken,
Observer<BatchResult> observer,
OperationOptions operationOptions)
Query an ongoing batch execution for new results.
|
Uid |
CSVFileConnector.removeAttributeValues(ObjectClass objectClass,
Uid uid,
Set<Attribute> attributes,
OperationOptions options)
Update the object specified by the
ObjectClass and Uid ,
removing from the current values of each attribute the values provided. |
Uid |
CSVFileConnector.resolveUsername(ObjectClass objectClass,
String userName,
OperationOptions options)
Resolve an object to its
Uid based on its username. |
void |
CSVFileConnector.sync(ObjectClass objectClass,
SyncToken token,
SyncResultsHandler handler,
OperationOptions options)
Request synchronization events--i.e., native changes to target objects.
|
Uid |
CSVFileConnector.update(ObjectClass objectClass,
Uid uid,
Set<Attribute> attributes,
OperationOptions options)
Update the object specified by the
ObjectClass and Uid ,
replacing the current values of each attribute with the values provided. |
Modifier and Type | Method and Description |
---|---|
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
UpdateAsyncApiOp.addAttributeValuesAsync(ObjectClass objclass,
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> |
AuthenticationAsyncApiOp.authenticateAsync(ObjectClass objectClass,
String username,
GuardedString password,
OperationOptions options)
Most basic authentication available.
|
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
CreateAsyncApiOp.createAsync(ObjectClass objectClass,
Set<Attribute> createAttributes,
OperationOptions options)
Create a target object based on the specified attributes.
|
org.forgerock.util.promise.Promise<Void,RuntimeException> |
DeleteAsyncApiOp.deleteAsync(ObjectClass objectClass,
Uid uid,
OperationOptions options)
Delete the object that the specified Uid identifies (if any).
|
org.forgerock.util.promise.Promise<ConnectorObject,RuntimeException> |
GetAsyncApiOp.getObjectAsync(ObjectClass objectClass,
Uid uid,
OperationOptions options)
Get a particular
ConnectorObject
based on the Uid . |
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
UpdateAsyncApiOp.removeAttributeValuesAsync(ObjectClass objclass,
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> |
ResolveUsernameAsyncApiOp.resolveUsernameAsync(ObjectClass objectClass,
String username,
OperationOptions options)
Resolve the given
authentication username to the corresponding
Uid . |
org.forgerock.util.promise.Promise<Object,RuntimeException> |
ScriptOnConnectorAsyncApiOp.runScriptOnConnectorAsync(ScriptContext request,
OperationOptions options)
Runs the script.
|
org.forgerock.util.promise.Promise<Object,RuntimeException> |
ScriptOnResourceAsyncApiOp.runScriptOnResourceAsync(ScriptContext request,
OperationOptions options)
Runs a script on a specific target resource.
|
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
UpdateAsyncApiOp.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. |
Modifier and Type | Method and Description |
---|---|
Uid |
UpdateAsyncApiOpImpl.addAttributeValues(ObjectClass objectClass,
Uid uid,
Set<Attribute> valuesToAdd,
OperationOptions options) |
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
UpdateAsyncApiOpImpl.addAttributeValuesAsync(ObjectClass objectClass,
Uid uid,
Set<Attribute> valuesToAdd,
OperationOptions options) |
Uid |
AuthenticationAsyncApiOpImpl.authenticate(ObjectClass objectClass,
String username,
GuardedString password,
OperationOptions options) |
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
AuthenticationAsyncApiOpImpl.authenticateAsync(ObjectClass objectClass,
String username,
GuardedString password,
OperationOptions options) |
Uid |
CreateAsyncApiOpImpl.create(ObjectClass objectClass,
Set<Attribute> createAttributes,
OperationOptions options) |
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
CreateAsyncApiOpImpl.createAsync(ObjectClass objectClass,
Set<Attribute> createAttributes,
OperationOptions options) |
void |
DeleteAsyncApiOpImpl.delete(ObjectClass objectClass,
Uid uid,
OperationOptions options) |
org.forgerock.util.promise.Promise<Void,RuntimeException> |
DeleteAsyncApiOpImpl.deleteAsync(ObjectClass objectClass,
Uid uid,
OperationOptions options) |
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
UpdateAsyncApiOpImpl.doUpdate(ObjectClass objectClass,
Uid uid,
OperationMessages.UpdateOpRequest.UpdateType updateType,
Set<Attribute> replaceAttributes,
OperationOptions options) |
Subscription |
BatchApiOpImpl.executeBatch(List<BatchTask> tasks,
Observer<BatchResult> observer,
OperationOptions options) |
ConnectorObject |
GetAsyncApiOpImpl.getObject(ObjectClass objectClass,
Uid uid,
OperationOptions options) |
org.forgerock.util.promise.Promise<ConnectorObject,RuntimeException> |
GetAsyncApiOpImpl.getObjectAsync(ObjectClass objectClass,
Uid uid,
OperationOptions options) |
Subscription |
BatchApiOpImpl.queryBatch(BatchToken token,
Observer<BatchResult> observer,
OperationOptions options) |
Uid |
UpdateAsyncApiOpImpl.removeAttributeValues(ObjectClass objectClass,
Uid uid,
Set<Attribute> valuesToRemove,
OperationOptions options) |
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
UpdateAsyncApiOpImpl.removeAttributeValuesAsync(ObjectClass objectClass,
Uid uid,
Set<Attribute> valuesToRemove,
OperationOptions options) |
Uid |
ResolveUsernameAsyncApiOpImpl.resolveUsername(ObjectClass objectClass,
String username,
OperationOptions options) |
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
ResolveUsernameAsyncApiOpImpl.resolveUsernameAsync(ObjectClass objectClass,
String username,
OperationOptions options) |
Object |
ScriptOnConnectorAsyncApiOpImpl.runScriptOnConnector(ScriptContext request,
OperationOptions options) |
org.forgerock.util.promise.Promise<Object,RuntimeException> |
ScriptOnConnectorAsyncApiOpImpl.runScriptOnConnectorAsync(ScriptContext request,
OperationOptions options) |
Object |
ScriptOnResourceAsyncApiOpImpl.runScriptOnResource(ScriptContext request,
OperationOptions options) |
org.forgerock.util.promise.Promise<Object,RuntimeException> |
ScriptOnResourceAsyncApiOpImpl.runScriptOnResourceAsync(ScriptContext request,
OperationOptions options) |
SearchResult |
SearchAsyncApiOpImpl.search(ObjectClass objectClass,
Filter filter,
ResultsHandler handler,
OperationOptions options) |
Subscription |
ConnectorEventSubscriptionApiOpImpl.subscribe(ObjectClass objectClass,
Filter eventFilter,
Observer<ConnectorObject> handler,
OperationOptions operationOptions) |
Subscription |
SyncEventSubscriptionApiOpImpl.subscribe(ObjectClass objectClass,
SyncToken token,
Observer<SyncDelta> handler,
OperationOptions operationOptions) |
SyncToken |
SyncAsyncApiOpImpl.sync(ObjectClass objectClass,
SyncToken token,
SyncResultsHandler handler,
OperationOptions options) |
org.forgerock.util.promise.Promise<BatchToken,RuntimeException> |
BatchApiOpImpl.tryExecuteBatch(List<BatchTask> tasks,
Observer<BatchResult> observer,
OperationOptions options) |
org.forgerock.util.promise.Promise<BatchToken,RuntimeException> |
BatchApiOpImpl.tryQueryBatch(BatchToken batchToken,
Observer<BatchResult> observer,
OperationOptions options) |
org.forgerock.util.promise.Promise<Void,RuntimeException> |
ConnectorEventSubscriptionApiOpImpl.trySubscribe(ObjectClass objectClass,
Filter eventFilter,
Observer<ConnectorObject> handler,
OperationOptions options) |
org.forgerock.util.promise.Promise<Void,RuntimeException> |
SyncEventSubscriptionApiOpImpl.trySubscribe(ObjectClass objectClass,
SyncToken token,
Observer<SyncDelta> handler,
OperationOptions options) |
Uid |
UpdateAsyncApiOpImpl.update(ObjectClass objectClass,
Uid uid,
Set<Attribute> replaceAttributes,
OperationOptions options) |
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
UpdateAsyncApiOpImpl.updateAsync(ObjectClass objectClass,
Uid uid,
Set<Attribute> replaceAttributes,
OperationOptions options) |
Modifier and Type | Method and Description |
---|---|
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
RemoteAsyncConnectorFacade.addAttributeValuesAsync(ObjectClass objectClass,
Uid uid,
Set<Attribute> valuesToAdd,
OperationOptions options) |
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
RemoteAsyncConnectorFacade.authenticateAsync(ObjectClass objectClass,
String username,
GuardedString password,
OperationOptions options) |
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
RemoteAsyncConnectorFacade.createAsync(ObjectClass objectClass,
Set<Attribute> createAttributes,
OperationOptions options) |
org.forgerock.util.promise.Promise<Void,RuntimeException> |
RemoteAsyncConnectorFacade.deleteAsync(ObjectClass objectClass,
Uid uid,
OperationOptions options) |
org.forgerock.util.promise.Promise<ConnectorObject,RuntimeException> |
RemoteAsyncConnectorFacade.getObjectAsync(ObjectClass objectClass,
Uid uid,
OperationOptions options) |
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
RemoteAsyncConnectorFacade.removeAttributeValuesAsync(ObjectClass objectClass,
Uid uid,
Set<Attribute> valuesToRemove,
OperationOptions options) |
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
RemoteAsyncConnectorFacade.resolveUsernameAsync(ObjectClass objectClass,
String username,
OperationOptions options) |
org.forgerock.util.promise.Promise<Object,RuntimeException> |
RemoteAsyncConnectorFacade.runScriptOnConnectorAsync(ScriptContext request,
OperationOptions options) |
org.forgerock.util.promise.Promise<Object,RuntimeException> |
RemoteAsyncConnectorFacade.runScriptOnResourceAsync(ScriptContext request,
OperationOptions options) |
org.forgerock.util.promise.Promise<Uid,RuntimeException> |
RemoteAsyncConnectorFacade.updateAsync(ObjectClass objectClass,
Uid uid,
Set<Attribute> replaceAttributes,
OperationOptions options) |
Modifier and Type | Method and Description |
---|---|
Uid |
ScriptedConnectorBase.addAttributeValues(ObjectClass objectClass,
Uid uid,
Set<Attribute> valuesToAdd,
OperationOptions options) |
Uid |
ScriptedConnectorBase.authenticate(ObjectClass objectClass,
String username,
GuardedString password,
OperationOptions options) |
Uid |
ScriptedConnectorBase.create(ObjectClass objectClass,
Set<Attribute> createAttributes,
OperationOptions options) |
protected groovy.lang.Binding |
ScriptedConnectorBase.createBinding(groovy.lang.Binding arguments,
OperationType action,
ObjectClass objectClass,
Uid uid,
Set<Attribute> attributes,
OperationOptions options) |
FilterTranslator<Filter> |
ScriptedConnectorBase.createFilterTranslator(ObjectClass objectClass,
OperationOptions options) |
void |
ScriptedConnectorBase.delete(ObjectClass objectClass,
Uid uid,
OperationOptions options) |
protected Object |
ScriptedConnectorBase.executeAddAttributeValues(String scriptName,
ObjectClass objectClass,
Uid uid,
Set<Attribute> valuesToAdd,
OperationOptions options) |
protected Object |
ScriptedConnectorBase.executeAuthenticate(String scriptName,
ObjectClass objectClass,
String username,
GuardedString password,
OperationOptions options) |
protected Uid |
ScriptedConnectorBase.executeCreate(String scriptName,
ObjectClass objectClass,
Set<Attribute> createAttributes,
OperationOptions options) |
protected void |
ScriptedConnectorBase.executeDelete(String scriptName,
ObjectClass objectClass,
Uid uid,
OperationOptions options) |
void |
ScriptedConnectorBase.executeQuery(ObjectClass objectClass,
Filter query,
ResultsHandler handler,
OperationOptions options) |
protected Object |
ScriptedConnectorBase.executeQuery(String scriptName,
ObjectClass objectClass,
Filter query,
groovy.lang.Closure<Boolean> handler,
OperationOptions options) |
protected Object |
ScriptedConnectorBase.executeRemoveAttributeValues(String scriptName,
ObjectClass objectClass,
Uid uid,
Set<Attribute> valuesToRemove,
OperationOptions options) |
protected Object |
ScriptedConnectorBase.executeResolveUsername(String scriptName,
ObjectClass objectClass,
String username,
OperationOptions options) |
protected Object |
ScriptedConnectorBase.executeRunScriptOnResource(String scriptName,
ScriptContext request,
OperationOptions options) |
protected Object |
ScriptedConnectorBase.executeSync(String scriptName,
ObjectClass objectClass,
SyncToken token,
groovy.lang.Closure<Boolean> handler,
OperationOptions options) |
protected Object |
ScriptedConnectorBase.executeUpdate(String scriptName,
ObjectClass objectClass,
Uid uid,
Set<Attribute> replaceAttributes,
OperationOptions options) |
protected Object |
ScriptedConnectorBase.genericUpdate(String scriptName,
OperationType method,
ObjectClass objectClass,
Uid uid,
Set<Attribute> attributes,
OperationOptions options) |
Uid |
ScriptedConnectorBase.removeAttributeValues(ObjectClass objectClass,
Uid uid,
Set<Attribute> valuesToRemove,
OperationOptions options) |
Uid |
ScriptedConnectorBase.resolveUsername(ObjectClass objectClass,
String username,
OperationOptions options) |
Object |
ScriptedConnectorBase.runScriptOnConnector(ScriptContext request,
OperationOptions options) |
Object |
ScriptedConnectorBase.runScriptOnResource(ScriptContext request,
OperationOptions options) |
void |
ScriptedConnectorBase.sync(ObjectClass objectClass,
SyncToken token,
SyncResultsHandler handler,
OperationOptions options) |
Uid |
ScriptedConnectorBase.update(ObjectClass objectClass,
Uid uid,
Set<Attribute> replaceAttributes,
OperationOptions options) |
Modifier and Type | Method and Description |
---|---|
OperationOptions |
ScriptOnResourceApiOpTests.getOperationOptionsByOp(ObjectClass objectClass,
Class<? extends APIOperation> clazz)
Gets OperationOptions suitable for specified operation.
|
OperationOptions |
ObjectClassRunner.getOperationOptionsByOp(ObjectClass objectClass,
Class<? extends APIOperation> clazz)
Gets OperationOptions suitable for specified operation.
|
OperationOptions |
ContractTestBase.getOperationOptionsByOp(ObjectClass objectClass,
Class<? extends APIOperation> clazz)
Gets OperationOptions suitable for specified operation.
|
Modifier and Type | Method and Description |
---|---|
static Uid |
ConnectorHelper.createObject(ConnectorFacade connectorFacade,
DataProvider dataProvider,
ObjectClassInfo objectClassInfo,
String testName,
int sequenceNumber,
OperationOptions opOptions)
gets the attributes for you
|
static Uid |
ConnectorHelper.createObject(ConnectorFacade connectorFacade,
DataProvider dataProvider,
ObjectClassInfo objectClassInfo,
String testName,
String qualifier,
int sequenceNumber,
OperationOptions opOptions)
gets the attributes for you, appending the qualifier to the attribute name
|
static boolean |
ConnectorHelper.deleteObject(ConnectorFacade connectorFacade,
ObjectClass objClass,
Uid uid,
boolean failOnError,
OperationOptions opOptions)
Performs deletion of object specified by uid.
|
static List<ConnectorObject> |
ConnectorHelper.search(ConnectorFacade connectorFacade,
ObjectClass objClass,
Filter filter,
OperationOptions opOptions)
Performs search on connector facade with specified object class, filter and operation options.
|
static Map<Uid,ConnectorObject> |
ConnectorHelper.search2Map(ConnectorFacade connectorFacade,
ObjectClass objClass,
Filter filter,
OperationOptions opOptions)
Performs search on connector facade with specified object class, filter and operation options.
|
static List<SyncDelta> |
ConnectorHelper.sync(ConnectorFacade connectorFacade,
ObjectClass objClass,
SyncToken token,
OperationOptions opOptions)
Performs sync on connector facade.
|
Modifier and Type | Method and Description |
---|---|
Uid |
DatabaseTableConnector.authenticate(ObjectClass oclass,
String username,
GuardedString password,
OperationOptions options)
Attempts to authenticate the given username combination
Simple authentication with two parameters presumed to be user name and
password.
|
Uid |
DatabaseTableConnector.create(ObjectClass oclass,
Set<Attribute> attrs,
OperationOptions options)
Creates a row in the database representing an account.
|
FilterTranslator<FilterWhereBuilder> |
DatabaseTableConnector.createFilterTranslator(ObjectClass oclass,
OperationOptions options)
Creates a Database Table filter translator.
|
void |
DatabaseTableConnector.delete(ObjectClass oclass,
Uid uid,
OperationOptions options)
Deletes a row from the table.
|
void |
DatabaseTableConnector.executeQuery(ObjectClass oclass,
FilterWhereBuilder where,
ResultsHandler handler,
OperationOptions options)
Search for rows
ConnectorFacade calls this method once for each native query that the
FilterTranslator produces in response to the
Filter passed
into
SearchApiOp . |
protected SQLParam |
DatabaseTableFilterTranslator.getSQLParam(Attribute attribute,
ObjectClass oclass,
OperationOptions options) |
Uid |
DatabaseTableConnector.resolveUsername(ObjectClass oclass,
String username,
OperationOptions options)
Attempts to resolve the given username
Resolve an object to its
Uid based on its username. |
void |
DatabaseTableConnector.sync(ObjectClass oclass,
SyncToken token,
SyncResultsHandler handler,
OperationOptions options)
Request synchronization events--i.e., native changes to target objects.
|
Uid |
DatabaseTableConnector.update(ObjectClass oclass,
Uid uid,
Set<Attribute> attrs,
OperationOptions options)
Update the database row with the data provided.
|
Constructor and Description |
---|
DatabaseTableFilterTranslator(DatabaseTableConnector connector,
ObjectClass oclass,
OperationOptions options) |
Modifier and Type | Field and Description |
---|---|
protected OperationOptions |
DatabaseFilterTranslator.options |
Modifier and Type | Method and Description |
---|---|
protected abstract SQLParam |
DatabaseFilterTranslator.getSQLParam(Attribute attribute,
ObjectClass objectClass,
OperationOptions options)
Get the SQLParam for given attribute.
|
Constructor and Description |
---|
DatabaseFilterTranslator(ObjectClass oclass,
OperationOptions options)
DatabaseFilterTranslator translate filters to database WHERE clause.
|
Modifier and Type | Method and Description |
---|---|
Uid |
UpdateApiOp.addAttributeValues(ObjectClass objclass,
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. |
Uid |
AuthenticationApiOp.authenticate(ObjectClass objectClass,
String username,
GuardedString password,
OperationOptions options)
Most basic authentication available.
|
Uid |
CreateApiOp.create(ObjectClass objectClass,
Set<Attribute> createAttributes,
OperationOptions options)
Create a target object based on the specified attributes.
|
void |
DeleteApiOp.delete(ObjectClass objectClass,
Uid uid,
OperationOptions options)
Delete the object that the specified Uid identifies (if any).
|
Subscription |
BatchApiOp.executeBatch(List<BatchTask> tasks,
Observer<BatchResult> observer,
OperationOptions options)
Execute a series of
BatchTask . |
ConnectorObject |
GetApiOp.getObject(ObjectClass objectClass,
Uid uid,
OperationOptions options)
Get a particular
ConnectorObject based on the Uid . |
Subscription |
BatchApiOp.queryBatch(BatchToken token,
Observer<BatchResult> observer,
OperationOptions options)
Query an ongoing batch execution for new results.
|
Uid |
UpdateApiOp.removeAttributeValues(ObjectClass objclass,
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. |
Uid |
ResolveUsernameApiOp.resolveUsername(ObjectClass objectClass,
String username,
OperationOptions options)
Resolve the given
authentication username to
the corresponding Uid . |
Object |
ScriptOnConnectorApiOp.runScriptOnConnector(ScriptContext request,
OperationOptions options)
Runs the script.
|
Object |
ScriptOnResourceApiOp.runScriptOnResource(ScriptContext request,
OperationOptions options)
Runs a script on a specific target resource.
|
SearchResult |
SearchApiOp.search(ObjectClass objectClass,
Filter filter,
ResultsHandler handler,
OperationOptions options)
Search the resource for all objects that match the object class and
filter.
|
Subscription |
ConnectorEventSubscriptionApiOp.subscribe(ObjectClass objectClass,
Filter eventFilter,
Observer<ConnectorObject> handler,
OperationOptions operationOptions) |
Subscription |
SyncEventSubscriptionApiOp.subscribe(ObjectClass objectClass,
SyncToken token,
Observer<SyncDelta> handler,
OperationOptions operationOptions)
Create a subscription to a given sync topic.
|
SyncToken |
SyncApiOp.sync(ObjectClass objectClass,
SyncToken token,
SyncResultsHandler handler,
OperationOptions options)
Request synchronization events--i.e., native changes to target objects.
|
Uid |
UpdateApiOp.update(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. |
Modifier and Type | Method and Description |
---|---|
OperationOptions |
UpdateBatchTask.getOptions() |
OperationOptions |
DeleteBatchTask.getOptions() |
OperationOptions |
CreateBatchTask.getOptions() |
Modifier and Type | Method and Description |
---|---|
void |
BatchBuilder.addCreateOp(ObjectClass objectClass,
Set<Attribute> createAttributes,
OperationOptions options)
Add a Create operation to the batch.
|
void |
BatchBuilder.addDeleteOp(ObjectClass objectClass,
Uid uid,
OperationOptions options)
Add a Delete operation to the batch.
|
void |
BatchBuilder.addUpdateAddOp(ObjectClass objectClass,
Uid uid,
Set<Attribute> attributes,
OperationOptions options)
Add an Update:Add operation to the batch.
|
void |
BatchBuilder.addUpdateRemoveOp(ObjectClass objectClass,
Uid uid,
Set<Attribute> attributes,
OperationOptions options)
Add an Update:Remove operation to the batch.
|
void |
BatchBuilder.addUpdateReplaceOp(ObjectClass objectClass,
Uid uid,
Set<Attribute> attributes,
OperationOptions options)
Add an Update:Replace operation to the batch.
|
Constructor and Description |
---|
CreateBatchTask(ObjectClass objectClass,
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,
Set<Attribute> replaceAttributes,
OperationOptions options,
UpdateType type)
See
UpdateApiOp . |
Modifier and Type | Method and Description |
---|---|
OperationOptions |
OperationOptionsBuilder.build()
Creates the
OperationOptions . |
Constructor and Description |
---|
OperationOptionsBuilder(OperationOptions options)
Create a builder from an existing set of options.
|
Modifier and Type | Method and Description |
---|---|
Uid |
AbstractConnectorFacade.addAttributeValues(ObjectClass objclass,
Uid uid,
Set<Attribute> attrs,
OperationOptions options)
Update the object specified by the
ObjectClass and Uid ,
adding to the current values of each attribute the values provided. |
Uid |
AbstractConnectorFacade.authenticate(ObjectClass objectClass,
String username,
GuardedString password,
OperationOptions options)
Most basic authentication available.
|
Uid |
AbstractConnectorFacade.create(ObjectClass objectClass,
Set<Attribute> createAttributes,
OperationOptions options)
Create a target object based on the specified attributes.
|
void |
AbstractConnectorFacade.delete(ObjectClass objectClass,
Uid uid,
OperationOptions options)
Delete the object that the specified Uid identifies (if any).
|
Subscription |
AbstractConnectorFacade.executeBatch(List<BatchTask> tasks,
Observer<BatchResult> observer,
OperationOptions options)
Execute a series of
BatchTask . |
ConnectorObject |
AbstractConnectorFacade.getObject(ObjectClass objectClass,
Uid uid,
OperationOptions options)
Get a particular
ConnectorObject based on the Uid . |
Subscription |
AbstractConnectorFacade.queryBatch(BatchToken token,
Observer<BatchResult> observer,
OperationOptions options)
Query an ongoing batch execution for new results.
|
Uid |
AbstractConnectorFacade.removeAttributeValues(ObjectClass objclass,
Uid uid,
Set<Attribute> attrs,
OperationOptions options)
Update the object specified by the
ObjectClass and Uid ,
removing from the current values of each attribute the values provided. |
Uid |
AbstractConnectorFacade.resolveUsername(ObjectClass objectClass,
String username,
OperationOptions options)
Resolve the given
authentication username to
the corresponding Uid . |
Object |
AbstractConnectorFacade.runScriptOnConnector(ScriptContext request,
OperationOptions options)
Runs the script.
|
Object |
AbstractConnectorFacade.runScriptOnResource(ScriptContext request,
OperationOptions options)
Runs a script on a specific target resource.
|
SearchResult |
AbstractConnectorFacade.search(ObjectClass objectClass,
Filter filter,
ResultsHandler handler,
OperationOptions options)
Search the resource for all objects that match the object class and
filter.
|
Subscription |
AbstractConnectorFacade.subscribe(ObjectClass objectClass,
Filter eventFilter,
Observer<ConnectorObject> handler,
OperationOptions operationOptions) |
Subscription |
AbstractConnectorFacade.subscribe(ObjectClass objectClass,
SyncToken token,
Observer<SyncDelta> handler,
OperationOptions operationOptions)
Create a subscription to a given sync topic.
|
SyncToken |
AbstractConnectorFacade.sync(ObjectClass objectClass,
SyncToken token,
SyncResultsHandler handler,
OperationOptions options)
Request synchronization events--i.e., native changes to target objects.
|
Uid |
AbstractConnectorFacade.update(ObjectClass objectClass,
Uid uid,
Set<Attribute> attrs,
OperationOptions options)
Update the object specified by the
ObjectClass and Uid ,
replacing the current values of each attribute with the values provided. |
Modifier and Type | Method and Description |
---|---|
Uid |
UpdateImpl.addAttributeValues(ObjectClass objclass,
Uid uid,
Set<Attribute> valuesToAdd,
OperationOptions options) |
Uid |
AuthenticationImpl.authenticate(ObjectClass objectClass,
String username,
GuardedString password,
OperationOptions options)
Authenticate using the basic credentials.
|
Uid |
CreateImpl.create(ObjectClass objectClass,
Set<Attribute> createAttributes,
OperationOptions options)
Calls the create method on the Connector side.
|
void |
DeleteImpl.delete(ObjectClass objectClass,
Uid uid,
OperationOptions options)
Calls the delete method on the Connector side.
|
Subscription |
SubscriptionImpl.executeBatch(List<BatchTask> tasks,
Observer<BatchResult> observer,
OperationOptions options) |
Subscription |
BatchImpl.executeBatch(List<BatchTask> tasks,
Observer<BatchResult> observer,
OperationOptions options) |
ConnectorObject |
GetImpl.getObject(ObjectClass objectClass,
Uid uid,
OperationOptions options) |
Subscription |
SubscriptionImpl.queryBatch(BatchToken token,
Observer<BatchResult> observer,
OperationOptions options) |
Subscription |
BatchImpl.queryBatch(BatchToken batchToken,
Observer<BatchResult> observer,
OperationOptions options) |
static void |
SearchImpl.rawSearch(SearchOp<?> search,
ObjectClass objectClass,
Filter filter,
SearchResultsHandler handler,
OperationOptions options)
Public because it is used by TestHelpersImpl.
|
Uid |
UpdateImpl.removeAttributeValues(ObjectClass objclass,
Uid uid,
Set<Attribute> valuesToRemove,
OperationOptions options) |
Uid |
ResolveUsernameImpl.resolveUsername(ObjectClass objectClass,
String username,
OperationOptions options)
Resolve the username to an
Uid . |
Object |
ScriptOnConnectorImpl.runScriptOnConnector(ScriptContext request,
OperationOptions options) |
Object |
ScriptOnResourceImpl.runScriptOnResource(ScriptContext request,
OperationOptions options) |
SearchResult |
SearchImpl.search(ObjectClass objectClass,
Filter originalFilter,
ResultsHandler handler,
OperationOptions options)
Call the SPI search routines to return the results to the
ResultsHandler . |
Subscription |
SubscriptionImpl.subscribe(ObjectClass objectClass,
Filter eventFilter,
Observer<ConnectorObject> handler,
OperationOptions operationOptions) |
Subscription |
SubscriptionImpl.subscribe(ObjectClass objectClass,
SyncToken token,
Observer<SyncDelta> handler,
OperationOptions operationOptions) |
SyncToken |
SyncImpl.sync(ObjectClass objectClass,
SyncToken token,
SyncResultsHandler handler,
OperationOptions options) |
Uid |
UpdateImpl.update(ObjectClass objectClass,
Uid uid,
Set<Attribute> replaceAttributes,
OperationOptions options) |
Modifier and Type | Method and Description |
---|---|
SearchResult |
TestHelpersImpl.search(SearchOp<?> search,
ObjectClass objectClass,
Filter filter,
ResultsHandler handler,
OperationOptions options)
Performs a raw, unfiltered search at the SPI level, eliminating
duplicates from the result set.
|
Modifier and Type | Method and Description |
---|---|
Uid |
UpdateAttributeValuesOp.addAttributeValues(ObjectClass objclass,
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. |
Uid |
AuthenticateOp.authenticate(ObjectClass objectClass,
String username,
GuardedString password,
OperationOptions options)
Simple authentication with two parameters presumed to be user name and
password.
|
Uid |
CreateOp.create(ObjectClass objectClass,
Set<Attribute> createAttributes,
OperationOptions options)
The
Connector developer is responsible for taking the attributes
given (which always includes the ObjectClass ) and create an
object and its Uid . |
FilterTranslator<T> |
SearchOp.createFilterTranslator(ObjectClass objectClass,
OperationOptions options)
Creates a filter translator that will translate a specified
filter into one or more native queries. |
void |
DeleteOp.delete(ObjectClass objectClass,
Uid uid,
OperationOptions options)
The
Connector developer is responsible for calling the native
delete methods to remove the object specified by its unique id. |
Subscription |
BatchOp.executeBatch(List<BatchTask> tasks,
Observer<BatchResult> observer,
OperationOptions options)
Execute a series of
BatchTask . |
void |
SearchOp.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 the
Filter passed
into
SearchApiOp . |
Subscription |
BatchOp.queryBatch(BatchToken token,
Observer<BatchResult> observer,
OperationOptions options)
Query an ongoing batch execution for new results.
|
Uid |
UpdateAttributeValuesOp.removeAttributeValues(ObjectClass objclass,
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. |
Uid |
ResolveUsernameOp.resolveUsername(ObjectClass objectClass,
String username,
OperationOptions options)
Resolve an object to its
Uid based on its username. |
Object |
ScriptOnConnectorOp.runScriptOnConnector(ScriptContext request,
OperationOptions options)
Runs the script request.
|
Object |
ScriptOnResourceOp.runScriptOnResource(ScriptContext request,
OperationOptions options)
Run the specified script on the target resource that this
connector manages.
|
Subscription |
ConnectorEventSubscriptionOp.subscribe(ObjectClass objectClass,
Filter eventFilter,
Observer<ConnectorObject> observer,
OperationOptions operationOptions) |
Subscription |
SyncEventSubscriptionOp.subscribe(ObjectClass objectClass,
SyncToken token,
Observer<SyncDelta> observer,
OperationOptions operationOptions) |
void |
SyncOp.sync(ObjectClass objectClass,
SyncToken token,
SyncResultsHandler handler,
OperationOptions options)
Request synchronization events--i.e., native changes to target objects.
|
Uid |
UpdateOp.update(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. |
Modifier and Type | Method and Description |
---|---|
Uid |
LdapConnector.addAttributeValues(ObjectClass objectClass,
Uid uid,
Set<Attribute> valuesToAdd,
OperationOptions options) |
Uid |
LdapConnector.authenticate(ObjectClass objectClass,
String username,
GuardedString password,
OperationOptions options) |
Uid |
LdapConnector.create(ObjectClass objectClass,
Set<Attribute> attrs,
OperationOptions options) |
FilterTranslator<LdapFilter> |
LdapConnector.createFilterTranslator(ObjectClass objectClass,
OperationOptions options) |
void |
LdapConnector.delete(ObjectClass objectClass,
Uid uid,
OperationOptions options) |
void |
LdapConnector.executeQuery(ObjectClass objectClass,
LdapFilter query,
ResultsHandler handler,
OperationOptions options) |
static String[] |
LdapConstants.getLdapUidAttributes(OperationOptions options) |
static String |
LdapConstants.getSearchFilter(OperationOptions options) |
Uid |
LdapConnector.removeAttributeValues(ObjectClass objectClass,
Uid uid,
Set<Attribute> valuesToRemove,
OperationOptions options) |
Uid |
LdapConnector.resolveUsername(ObjectClass objectClass,
String username,
OperationOptions options) |
void |
LdapConnector.sync(ObjectClass objectClass,
SyncToken token,
SyncResultsHandler handler,
OperationOptions options) |
Uid |
LdapConnector.update(ObjectClass objectClass,
Uid uid,
Set<Attribute> replaceAttributes,
OperationOptions options) |
Constructor and Description |
---|
LdapAuthenticate(LdapConnection conn,
ObjectClass objectClass,
String username,
OperationOptions options) |
Constructor and Description |
---|
LdapCreate(LdapConnection conn,
ObjectClass oclass,
Set<Attribute> attrs,
OperationOptions options) |
LdapDelete(LdapConnection conn,
ObjectClass oclass,
Uid uid,
OperationOptions options) |
LdapUpdate(LdapConnection conn,
ObjectClass oclass,
Uid uid,
OperationOptions options) |
Constructor and Description |
---|
LdapSearch(LdapConnection conn,
ObjectClass oclass,
LdapFilter filter,
ResultsHandler handler,
OperationOptions options) |
LdapSearch(LdapConnection conn,
ObjectClass oclass,
LdapFilter filter,
ResultsHandler handler,
OperationOptions options,
String... baseDNs) |
Modifier and Type | Method and Description |
---|---|
void |
LdapSyncStrategy.sync(SyncToken token,
SyncResultsHandler handler,
OperationOptions options) |
Modifier and Type | Method and Description |
---|---|
void |
ActiveDirectoryChangeLogSyncStrategy.sync(SyncToken token,
SyncResultsHandler handler,
OperationOptions options) |
Modifier and Type | Method and Description |
---|---|
void |
SunDSChangeLogSyncStrategy.sync(SyncToken token,
SyncResultsHandler handler,
OperationOptions options) |
Modifier and Type | Method and Description |
---|---|
void |
TimestampsSyncStrategy.sync(SyncToken token,
SyncResultsHandler handler,
OperationOptions options) |
Modifier and Type | Method and Description |
---|---|
static void |
TestHelpers.search(SearchOp<?> search,
ObjectClass objectClass,
Filter filter,
ResultsHandler handler,
OperationOptions options)
Performs a raw, unfiltered search at the SPI level, eliminating
duplicates from the result set.
|
static List<ConnectorObject> |
TestHelpers.searchToList(SearchApiOp search,
ObjectClass objectClass,
Filter filter,
OperationOptions options) |
static List<ConnectorObject> |
TestHelpers.searchToList(SearchOp<?> search,
ObjectClass objectClass,
Filter filter,
OperationOptions options)
Performs a raw, unfiltered search at the SPI level, eliminating
duplicates from the result set.
|
Modifier and Type | Method and Description |
---|---|
SearchResult |
TestHelpersSpi.search(SearchOp<?> search,
ObjectClass objectClass,
Filter filter,
ResultsHandler handler,
OperationOptions options) |
Copyright © 2018–2025. All rights reserved.