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 |
XMLHandlerImpl.create(ObjectClass objClass,
Set<Attribute> attributes) |
Uid |
XMLHandler.create(ObjectClass objClass,
Set<Attribute> attributes) |
Uid |
ConcurrentXMLHandler.create(ObjectClass objClass,
Set<Attribute> attributes) |
Uid |
XMLConnector.create(ObjectClass objClass,
Set<Attribute> attributes,
OperationOptions options) |
FilterTranslator<Query> |
XMLConnector.createFilterTranslator(ObjectClass objClass,
OperationOptions options) |
void |
XMLHandlerImpl.delete(ObjectClass objClass,
Uid uid) |
void |
XMLHandler.delete(ObjectClass objClass,
Uid uid) |
void |
ConcurrentXMLHandler.delete(ObjectClass objClass,
Uid uid) |
void |
XMLConnector.delete(ObjectClass objClass,
Uid uid,
OperationOptions options) |
void |
XMLConnector.executeQuery(ObjectClass objClass,
Query query,
ResultsHandler handler,
OperationOptions options) |
boolean |
XMLHandlerImpl.isSupportUid(ObjectClass objectClass) |
boolean |
XMLHandler.isSupportUid(ObjectClass objectClass) |
boolean |
ConcurrentXMLHandler.isSupportUid(ObjectClass objectClass) |
Collection<ConnectorObject> |
XMLHandlerImpl.search(String query,
ObjectClass objClass) |
Collection<ConnectorObject> |
XMLHandler.search(String query,
ObjectClass objectClass) |
Collection<ConnectorObject> |
ConcurrentXMLHandler.search(String query,
ObjectClass objectClass) |
Uid |
XMLHandlerImpl.update(ObjectClass objClass,
Uid uid,
Set<Attribute> replaceAttributes) |
Uid |
XMLHandler.update(ObjectClass objClass,
Uid uid,
Set<Attribute> replaceAttributes) |
Uid |
ConcurrentXMLHandler.update(ObjectClass objClass,
Uid uid,
Set<Attribute> replaceAttributes) |
Uid |
XMLConnector.update(ObjectClass objClass,
Uid uid,
Set<Attribute> replaceAttributes,
OperationOptions options) |
Constructor and Description |
---|
QueryBuilder(Query query,
ObjectClass objClass) |
Modifier and Type | Method and Description |
---|---|
static void |
XmlHandlerUtil.checkObjectType(ObjectClass objClass,
com.sun.xml.xsom.XSSchema schema) |
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. |
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 . |
SyncToken |
CSVFileConnector.getLatestSyncToken(ObjectClass objectClass)
Returns the token corresponding to the most recent synchronization event.
|
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<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) |
SyncToken |
SyncAsyncApiOpImpl.getLatestSyncToken(ObjectClass objectClass) |
org.forgerock.util.promise.Promise<SyncToken,RuntimeException> |
SyncAsyncApiOpImpl.getLatestSyncTokenAsync(ObjectClass objectClass) |
ConnectorObject |
GetAsyncApiOpImpl.getObject(ObjectClass objectClass,
Uid uid,
OperationOptions options) |
org.forgerock.util.promise.Promise<ConnectorObject,RuntimeException> |
GetAsyncApiOpImpl.getObjectAsync(ObjectClass objectClass,
Uid uid,
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) |
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<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<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) |
protected Object |
ScriptedConnectorBase.executeGetLatestSyncToken(String scriptName,
ObjectClass objectClass) |
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.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) |
SyncToken |
ScriptedConnectorBase.getLatestSyncToken(ObjectClass objectClass) |
void |
ConnectorObjectDelegate.objectClass(ObjectClass objectClass) |
Uid |
ScriptedConnectorBase.removeAttributeValues(ObjectClass objectClass,
Uid uid,
Set<Attribute> valuesToRemove,
OperationOptions options) |
Uid |
ScriptedConnectorBase.resolveUsername(ObjectClass objectClass,
String username,
OperationOptions options) |
protected Uid |
ScriptedConnectorBase.returnUid(OperationType action,
ObjectClass objectClass,
Object uidAfter) |
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 |
---|---|
static ObjectClass |
ConnectorHelper.getObjectClassFromObjectClassInfo(ObjectClassInfo objectClassInfo)
Returns object class based on object class info.
|
Modifier and Type | Method and Description |
---|---|
static boolean |
ConnectorHelper.deleteObject(ConnectorFacade connectorFacade,
ObjectClass objClass,
Uid uid,
boolean failOnError,
OperationOptions opOptions)
Performs deletion of object specified by uid.
|
ObjectClassInfo |
ObjectClassRunner.getObjectClassInfo(ObjectClass objectClass)
Gets
ObjectClassInfo for object class returned by ObjectClassRunner . |
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.
|
boolean |
ObjectClassRunner.isObjectClassSupported(ObjectClass objectClass)
Identifier which tells if the tested ObjectClass
is supported by connector or not, supported means that the ObjectClass is included in the Schema
|
static boolean |
ConnectorHelper.operationsSupported(ConnectorFacade connectorFacade,
ObjectClass oClass,
Set<Class<? extends APIOperation>> operations)
check to see if a particular objectclass supports a particular operations
To succeed all the operations must be supported.
|
static boolean |
ConnectorHelper.operationSupported(ConnectorFacade connectorFacade,
ObjectClass oClass,
Class<? extends APIOperation> operation)
check to see if a particular objectclass supports a particular operation
|
static boolean |
ConnectorHelper.operationSupported(ConnectorFacade connectorFacade,
ObjectClass oClass,
Class<? extends APIOperation> operation1,
Class<? extends APIOperation> operation2)
check to see if a particular objectclass supports a particular operations
|
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.
|
void |
SearchApiOpTests.testCaseInsensitiveSearch(ObjectClass objectClass)
Test case insensitive search for UID attribute.
|
void |
ObjectClassRunner.testContract(ObjectClass objectClass)
Main contract test entry point, it calls
ObjectClassRunner.testRun(ObjectClass) method
in configured number of iterations, runs the iteration only if the
operation is supported by the connector |
void |
CreateApiOpTests.testCreateFailUnsupportedAttribute(ObjectClass objectClass)
Tests create method with invalid Attribute, RuntimeException is expected
connector developers can set the value of unsupported attribute
using test property:
testsuite.Create.unsupportedAttributeName |
void |
CreateApiOpTests.testCreateWithSameAttributes(ObjectClass objectClass)
Tests create twice with the same attributes.
|
void |
DeleteApiOpTests.testDeleteThrowUnknownUid(ObjectClass objectClass)
Tests that delete throws
UnknownUidException when object is deleted for the second time. |
void |
MultiOpTests.testDisableDateOpAttribute(ObjectClass objectClass)
Tests DISABLE_DATE attribute contract
|
void |
MultiOpTests.testEnableDateOpAttribute(ObjectClass objectClass)
Tests ENABLE_DATE attribute contract
|
void |
MultiOpTests.testEnableOpAttribute(ObjectClass objectClass)
Tests ENABLE attribute contract
|
void |
SyncApiOpTests.testLatestSyncToken(ObjectClass objectClass)
Tests that
SyncApiOp.getLatestSyncToken(ObjectClass) returns really the latest sync token which is available. |
void |
MultiOpTests.testLockOutOpAttribute(ObjectClass objectClass)
Tests LOCK_OUT attribute contract
|
void |
ResolveUsernameApiOpTests.testNegative(ObjectClass objectClass) |
void |
AttributeTests.testNonReadable(ObjectClass objectClass)
Non readable attributes should _not_ be returned by default
API operations for acquiring attributes:
GetApiOp
|
void |
AttributeTests.testNonUpdateable(ObjectClass objectClass)
Update of non-updateable attribute is not acceptable.
|
void |
AuthenticationApiOpTests.testOpEnable(ObjectClass objectClass)
Tests that disabled user cannot authenticate.
|
void |
AuthenticationApiOpTests.testOpPasswordExpirationDate(ObjectClass objectClass)
Tests that PasswordExpiredException is thrown in case PasswordExpirationDate is set to today.
|
void |
AuthenticationApiOpTests.testOpPasswordExpired(ObjectClass objectClass)
Tests that PasswordExpiredException is thrown in case PasswordExpired is updated to true.
|
void |
AuthenticationApiOpTests.testPasswordBeforePasswordExpired(ObjectClass objectClass)
Tests that connector respects order of PASSWORD and PASSWORD_EXPIRED
attributes during update.
|
void |
MultiOpTests.testPasswordChangeIntervalPredAttribute(ObjectClass objectClass)
Tests PASSWORD_CHANGE_INTERVAL attribute contract
|
void |
MultiOpTests.testPasswordExpirationDateOpAttribute(ObjectClass objectClass)
Tests PASSWORD_EXPIRATION_DATE attribute contract
|
void |
MultiOpTests.testPasswordExpiredOpAttribute(ObjectClass objectClass)
Tests PASSWORD_EXPIRED attribute contract
|
void |
ResolveUsernameApiOpTests.testPositive(ObjectClass objectClass) |
void |
AttributeTests.testRequirableIsCreatable(ObjectClass objectClass)
Required attributes must be creatable.
|
void |
AttributeTests.testReturnedByDefault(ObjectClass objectClass)
Not returned by default attributes should not be returned, unless
specified in attributesToGet (
OperationOptions )
API operations for acquiring attributes:
GetApiOp
SearchApiOp
SyncApiOp
|
protected void |
UpdateApiOpTests.testRun(ObjectClass objectClass)
This method will be called configured number of times
|
protected void |
SyncApiOpTests.testRun(ObjectClass objectClass)
This method will be called configured number of times
|
protected void |
SearchApiOpTests.testRun(ObjectClass objectClass)
This method will be called configured number of times
|
protected void |
ResolveUsernameApiOpTests.testRun(ObjectClass objectClass) |
protected abstract void |
ObjectClassRunner.testRun(ObjectClass objectClass)
This method will be called configured number of times
|
protected void |
MultiOpTests.testRun(ObjectClass objectClass)
Scenario test - test positive cases.
|
protected void |
GetApiOpTests.testRun(ObjectClass objectClass)
This method will be called configured number of times
|
protected void |
DeleteApiOpTests.testRun(ObjectClass objectClass)
This method will be called configured number of times
|
protected void |
CreateApiOpTests.testRun(ObjectClass objectClass)
This method will be called configured number of times
|
protected void |
AuthenticationApiOpTests.testRun(ObjectClass objectClass)
This method will be called configured number of times
|
protected void |
AttributeTests.testRun(ObjectClass objectClass)
This method will be called configured number of times
|
void |
SearchApiOpTests.testSearchWithoutAttrsToGet(ObjectClass objectClass)
Test Search without specified OperationOptions attrsToGet which is the default for all other tests.
|
void |
SyncApiOpTests.testSyncWithoutAttrsToGet(ObjectClass objectClass)
Test Sync without attrsToGet.
|
void |
UpdateApiOpTests.testUpdateFailUnsupportedAttribute(ObjectClass objectClass)
Tests update method with invalid Attribute, RuntimeException is expected
connector developers can set the value of unsupported attribute
using test property:
testsuite.Create.unsupportedAttributeName |
void |
UpdateApiOpTests.testUpdateToNull(ObjectClass objectClass)
The test verifies that connector doesn't throw NullPointerException or some other unexpected behavior when passed null as
attribute value.
|
void |
UpdateApiOpTests.testUpdateToSameAttributes(ObjectClass objectClass)
Tests create of two different objects and then update one to the same
attributes as the second.
|
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 . |
SyncToken |
DatabaseTableConnector.getLatestSyncToken(ObjectClass oclass)
Returns the token corresponding to the most recent synchronization event.
|
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 ObjectClass |
DatabaseFilterTranslator.oclass |
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).
|
SyncToken |
SyncApiOp.getLatestSyncToken(ObjectClass objectClass)
Returns the token corresponding to the most recent synchronization event
for any instance of the specified object class.
|
ConnectorObject |
GetApiOp.getObject(ObjectClass objectClass,
Uid uid,
OperationOptions options)
Get a particular
ConnectorObject based on the Uid . |
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 . |
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 |
---|---|
ObjectClass |
UpdateBatchTask.getObjectClass() |
ObjectClass |
DeleteBatchTask.getObjectClass() |
ObjectClass |
CreateBatchTask.getObjectClass() |
ObjectClass |
BatchTask.getObjectClass()
Return the ObjectClass used for this task.
|
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 . |
Constructor and Description |
---|
UnknownUidException(Uid uid,
ObjectClass objclass) |
Modifier and Type | Field and Description |
---|---|
static ObjectClass |
ObjectClass.ACCOUNT
Represents a human being in the context of a specific system or
application.
|
static ObjectClass |
ObjectClass.ALL
Represents all collections that contains any object.
|
static ObjectClass |
ObjectClass.GROUP
Represents a collection that contains an object (such as an account).
|
Modifier and Type | Method and Description |
---|---|
ObjectClass |
SyncDeltaBuilder.getObjectClass()
Gets the ObjectClass of the object that deleted.
|
ObjectClass |
SyncDelta.getObjectClass()
If the change described by this
SyncDelta.DELETE and the
deleted object value is null , this method returns the
ObjectClass of the deleted object. |
ObjectClass |
QualifiedUid.getObjectClass()
Returns the object class.
|
ObjectClass |
ConnectorObject.getObjectClass()
Gets the
ObjectClass for this object. |
Modifier and Type | Method and Description |
---|---|
static boolean |
ObjectClassUtil.isSpecial(ObjectClass objectClass)
Determines whether the specified object class is a special object class.
|
SyncDeltaBuilder |
SyncDeltaBuilder.setObjectClass(ObjectClass objectClass)
Sets the ObjectClass of the object that deleted.
|
ConnectorObjectBuilder |
ConnectorObjectBuilder.setObjectClass(ObjectClass oclass) |
Constructor and Description |
---|
ConnectorObject(ObjectClass objectClass,
Set<? extends Attribute> set)
Public only for serialization; please use
ConnectorObjectBuilder . |
QualifiedUid(ObjectClass objectClass,
Uid uid)
Create a QualifiedUid.
|
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).
|
SyncToken |
AbstractConnectorFacade.getLatestSyncToken(ObjectClass objectClass)
Returns the token corresponding to the most recent synchronization event
for any instance of the specified object class.
|
ConnectorObject |
AbstractConnectorFacade.getObject(ObjectClass objectClass,
Uid uid,
OperationOptions options)
Get a particular
ConnectorObject based on the Uid . |
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 . |
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.
|
SyncToken |
SyncImpl.getLatestSyncToken(ObjectClass objectClass) |
ObjectNormalizerFacade |
ConnectorAPIOperationRunner.getNormalizer(ObjectClass objectClass) |
ConnectorObject |
GetImpl.getObject(ObjectClass objectClass,
Uid uid,
OperationOptions options) |
Attribute |
CaseNormalizer.normalizeAttribute(ObjectClass oclass,
Attribute attribute) |
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 . |
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) |
static void |
UpdateImpl.validateInput(ObjectClass objectClass,
Uid uid,
Set<Attribute> replaceAttributes,
boolean isDelta)
Makes things easier if you can trust the input.
|
Constructor and Description |
---|
ObjectNormalizerFacade(ObjectClass objectClass,
AttributeNormalizer normalizer)
Create a new ObjectNormalizer.
|
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 |
---|---|
Attribute |
AttributeNormalizer.normalizeAttribute(ObjectClass objectClass,
Attribute attribute) |
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. |
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 . |
SyncToken |
SyncOp.getLatestSyncToken(ObjectClass objectClass)
Returns the token corresponding to the most recent synchronization event.
|
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. |
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 | Field and Description |
---|---|
static ObjectClass |
LdapUtil.SERVER_INFO_OBJCLASS |
static ObjectClass |
LdapUtil.UNKNOWN_OBJCLASS |
Modifier and Type | Method and Description |
---|---|
ObjectClass |
ObjectClassMappingConfig.getObjectClass() |
static ObjectClass |
LdapUtil.guessObjectClass(LdapConnection lconn,
Attribute attr) |
Modifier and Type | Method and Description |
---|---|
Map<ObjectClass,ObjectClassMappingConfig> |
LdapConfiguration.getObjectClassMappingConfigs() |
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) |
SyncToken |
LdapConnector.getLatestSyncToken(ObjectClass objectClass) |
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) |
ObjectClassMappingConfig(ObjectClass objectClass,
List<String> ldapClasses,
boolean container,
List<String> shortNameLdapAttributes,
AttributeInfo... operationalAttributes) |
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) |
Modifier and Type | Field and Description |
---|---|
static ObjectClass |
LdapSchemaMapping.ANY_OBJECT_CLASS |
Modifier and Type | Method and Description |
---|---|
String |
LdapSchemaMapping.create(ObjectClass oclass,
Name name,
Attributes initialAttrs) |
Attribute |
LdapSchemaMapping.createAttribute(ObjectClass oclass,
String attrName,
LdapEntry entry,
boolean emptyWhenNotFound)
Returns an empty attribute instead of
null when emptyWhenNotFound
is true . |
Name |
LdapSchemaMapping.createName(ObjectClass oclass,
LdapEntry entry)
Creates a
Name for the given entry. |
Uid |
LdapSchemaMapping.createUid(ObjectClass oclass,
LdapEntry entry)
Creates a
Uid for the given entry. |
Uid |
LdapSchemaMapping.createUid(ObjectClass oclass,
String entryDN) |
Attribute |
LdapSchemaMapping.encodeAttribute(ObjectClass oclass,
Attribute attr) |
GuardedPasswordAttribute |
LdapSchemaMapping.encodePassword(ObjectClass oclass,
Attribute attr) |
Set<String> |
LdapSchemaMapping.getEffectiveLdapClasses(ObjectClass oclass)
Returns the LDAP object class to which the given framework object
class is mapped in a transitive manner, i.e., together with any superior
object classes, any superiors thereof, etc..
|
String |
LdapSchemaMapping.getEntryDN(ObjectClass oclass,
Name name) |
String |
LdapSchemaMapping.getLdapAttribute(ObjectClass oclass,
Attribute attr)
Returns the name of the LDAP attribute which corresponds to the given
attribute of the given object class, or null.
|
String |
LdapSchemaMapping.getLdapAttribute(ObjectClass oclass,
String attrName,
boolean transfer) |
Set<String> |
LdapSchemaMapping.getLdapAttributes(ObjectClass oclass,
Set<String> attrs,
boolean transfer)
Returns the names of the LDAP attributes which correspond to the given
attribute names of the given object class.
|
List<String> |
LdapSchemaMapping.getLdapClasses(ObjectClass oclass)
Returns the LDAP object classes to which the given framework object
class is mapped.
|
String |
LdapSchemaMapping.getLdapNameAttribute(ObjectClass oclass)
Returns the LDAP attribute which corresponds to
Name for the
given object class. |
String |
LdapSchemaMapping.getLdapUidAttribute(ObjectClass oclass)
Returns the LDAP attribute which corresponds to
Uid . |
List<String> |
LdapSchemaMapping.getUserNameLdapAttributes(ObjectClass oclass) |
void |
LdapSchemaMapping.removeNonReadableAttributes(ObjectClass oclass,
Set<String> attrNames) |
String |
LdapSchemaMapping.rename(ObjectClass oclass,
String entryDN,
Name newName) |
Modifier and Type | Method and Description |
---|---|
static String |
LdapSearches.findEntryDN(LdapConnection conn,
ObjectClass oclass,
Uid uid)
Returns the DN of the entry identified by the given Uid.
|
static ConnectorObject |
LdapSearches.findObject(LdapConnection conn,
ObjectClass oclass,
LdapFilter filter,
String... attrsToGet) |
static List<ConnectorObject> |
LdapSearches.findObjects(LdapConnection conn,
ObjectClass oclass,
String baseDN,
Attribute attr,
String... attrsToGet) |
static Set<String> |
LdapSearch.getAttributesReturnedByDefault(LdapConnection conn,
ObjectClass oclass) |
static String |
LdapSearches.getEntryDN(LdapConnection conn,
ObjectClass oclass,
Uid uid)
Returns the DN of the entry identified by the given Uid.
|
Constructor and Description |
---|
LdapFilterTranslator(LdapSchemaMapping mapping,
ObjectClass objectClass) |
LdapSearch(LdapConnection conn,
ObjectClass oclass,
LdapFilter filter,
ResultsHandler handler,
OperationOptions options) |
LdapSearch(LdapConnection conn,
ObjectClass oclass,
LdapFilter filter,
ResultsHandler handler,
OperationOptions options,
String... baseDNs) |
Constructor and Description |
---|
ActiveDirectoryChangeLogSyncStrategy(LdapConnection conn,
ObjectClass oclass) |
Constructor and Description |
---|
IBMDSChangeLogSyncStrategy(LdapConnection conn,
ObjectClass oclass) |
Constructor and Description |
---|
SunDSChangeLogSyncStrategy(LdapConnection conn,
ObjectClass oclass) |
Constructor and Description |
---|
TimestampsSyncStrategy(LdapConnection conn,
ObjectClass oclass) |
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) |
static List<ConnectorObject> |
TestHelpers.searchToList(SearchApiOp search,
ObjectClass objectClass,
Filter filter,
OperationOptions options) |
static List<ConnectorObject> |
TestHelpers.searchToList(SearchOp<?> search,
ObjectClass objectClass,
Filter filter)
Performs a raw, unfiltered search at the SPI level, eliminating
duplicates from the result set.
|
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.