Uses of Interface
org.identityconnectors.framework.spi.operations.SPIOperation
Package
Description
-
Uses of SPIOperation in org.identityconnectors.framework.common
Modifier and TypeMethodDescriptionstatic Set<Class<? extends SPIOperation>>
FrameworkUtil.allSPIOperations()
Return all the knownSPIOperation
s.Modifier and TypeMethodDescriptionstatic Set<Class<? extends APIOperation>>
FrameworkUtil.spi2apis
(Class<? extends SPIOperation> spi) Converts aSPIOperation
to an set ofAPIOperation
. -
Uses of SPIOperation in org.identityconnectors.framework.common.objects
Modifier and TypeMethodDescriptionvoid
SchemaBuilder.addSupportedObjectClass
(Class<? extends SPIOperation> op, ObjectClassInfo def) Adds the given ObjectClassInfo as a supported ObjectClass for the given operation.void
SchemaBuilder.addSupportedOperationOption
(Class<? extends SPIOperation> op, OperationOptionInfo def) Adds the given OperationOptionInfo as a supported option for the given operation.void
SchemaBuilder.removeSupportedObjectClass
(Class<? extends SPIOperation> op, ObjectClassInfo def) Removes the given ObjectClassInfo as a supported ObjectClass for the given operation.void
SchemaBuilder.removeSupportedOperationOption
(Class<? extends SPIOperation> op, OperationOptionInfo def) Removes the given OperationOptionInfo as a supported option for the given operation. -
Uses of SPIOperation in org.identityconnectors.framework.spi.operations
Modifier and TypeInterfaceDescriptioninterface
Authenticate an object based on their unique identifier and password.interface
Execute a batched list of operations.interface
A ConnectorEventSubscriptionOp.interface
TheConnector
developer is responsible for taking the attributes given (which always includes theObjectClass
) and create an object and itsUid
.interface
Operation interface to delete objects from the target resource.interface
Resolve an object to itsUid
based on its username.interface
Implement this interface to allow the Connector to describe which types of objects the Connector manages on the target resource (and which operations and which options the Connector supports for each type of object).interface
Operation that runs a script in the environment of the connector.interface
Operation that runs a script directly on a target resource.interface
SearchOp<T>
Implement this interface to allow the Connector to search for resource objects.interface
ASyncEventSubscriptionOp.interface
Poll for synchronization events--i.e., native changes to target objects.interface
Tests the connectorConfiguration
.interface
More advanced implementation ofUpdateOp
to be implemented by connectors that wish to offer better performance and atomicity semantics for the methodsUpdateApiOp.addAttributeValues(ObjectClass, Uid, Set, OperationOptions)
andUpdateApiOp.removeAttributeValues(ObjectClass, Uid, Set, OperationOptions)
.interface
The developer of a Connector should implement either this interface or theUpdateAttributeValuesOp
interface if the Connector will allow an authorized caller to update (i.e., modify or replace) objects on the target resource.