Uses of Interface
org.identityconnectors.framework.api.operations.APIOperation
-
Packages that use APIOperation Package Description org.identityconnectors.framework.api The Connector API presents a consistent view of any Connector, regardless of which operations the connector actually implements.org.identityconnectors.framework.api.operations org.identityconnectors.framework.common org.identityconnectors.framework.common.objects -
-
Uses of APIOperation in org.identityconnectors.framework.api
Subinterfaces of APIOperation in org.identityconnectors.framework.api Modifier and Type Interface Description interface
ConnectorFacade
Main interface through which an application invokes Connector operations.Methods in org.identityconnectors.framework.api that return APIOperation Modifier and Type Method Description APIOperation
ConnectorFacade. getOperation(java.lang.Class<? extends APIOperation> clazz)
Get an instance of an operation that this facade supports.Methods in org.identityconnectors.framework.api that return types with arguments of type APIOperation Modifier and Type Method Description java.util.Set<java.lang.Class<? extends APIOperation>>
ConfigurationProperty. getOperations()
Set of operations for which this property must be specified.java.util.Set<java.lang.Class<? extends APIOperation>>
APIConfiguration. getSupportedOperations()
Get the set of operations that thisConnectorFacade
will support.java.util.Set<java.lang.Class<? extends APIOperation>>
ConnectorFacade. getSupportedOperations()
Get the set of operations that thisConnectorFacade
will support.Method parameters in org.identityconnectors.framework.api with type arguments of type APIOperation Modifier and Type Method Description APIOperation
ConnectorFacade. getOperation(java.lang.Class<? extends APIOperation> clazz)
Get an instance of an operation that this facade supports.int
APIConfiguration. getTimeout(java.lang.Class<? extends APIOperation> operation)
Gets the timeout in milliseconds based on the operation provided.void
APIConfiguration. setTimeout(java.lang.Class<? extends APIOperation> operation, int timeout)
Sets the timeout value for the operation provided. -
Uses of APIOperation in org.identityconnectors.framework.api.operations
Subinterfaces of APIOperation in org.identityconnectors.framework.api.operations Modifier and Type Interface Description interface
AuthenticationApiOp
interface
BatchApiOp
Execute a series ofAPIOperation
.interface
ConnectorEventSubscriptionApiOp
interface
CreateApiOp
interface
DeleteApiOp
interface
GetApiOp
Get a particularConnectorObject
based on theUid
.interface
ResolveUsernameApiOp
interface
SchemaApiOp
Get the schema from theConnector
.interface
ScriptOnConnectorApiOp
Runs a script in the same JVM or .Net Runtime as theConnector
.interface
ScriptOnResourceApiOp
Runs a script on the target resource that a connector manages.interface
SearchApiOp
interface
SyncApiOp
Poll for synchronization events--i.e., native changes to target objects.interface
SyncEventSubscriptionApiOp
interface
TestApiOp
Tests theconfiguration
with the connector.interface
UpdateApiOp
Updates aConnectorObject
.interface
ValidateApiOp
Validates theconfiguration
. -
Uses of APIOperation in org.identityconnectors.framework.common
Methods in org.identityconnectors.framework.common that return types with arguments of type APIOperation Modifier and Type Method Description static java.util.Set<java.lang.Class<? extends APIOperation>>
FrameworkUtil. allAPIOperations()
Return all the knownAPIOperation
s.static java.util.Set<java.lang.Class<? extends APIOperation>>
FrameworkUtil. getDefaultSupportedOperations(java.lang.Class<? extends Connector> connector)
Determines the default set of operations that aConnector
supports.static java.util.Set<java.lang.Class<? extends APIOperation>>
FrameworkUtil. getUnconditionallySupportedOperations()
Returns the set of operations that are always supported.static java.util.Set<java.lang.Class<? extends APIOperation>>
FrameworkUtil. spi2apis(java.lang.Class<? extends SPIOperation> spi)
Converts aSPIOperation
to an set ofAPIOperation
. -
Uses of APIOperation in org.identityconnectors.framework.common.objects
Methods in org.identityconnectors.framework.common.objects that return types with arguments of type APIOperation Modifier and Type Method Description java.util.Map<java.lang.Class<? extends APIOperation>,java.util.Set<ObjectClassInfo>>
Schema. getSupportedObjectClassesByOperation()
Returns the set of object classes that apply to a particular operation.java.util.Map<java.lang.Class<? extends APIOperation>,java.util.Set<OperationOptionInfo>>
Schema. getSupportedOptionsByOperation()
Returns the set of operation options that apply to a particular operation.Method parameters in org.identityconnectors.framework.common.objects with type arguments of type APIOperation Modifier and Type Method Description java.util.Set<ObjectClassInfo>
Schema. getSupportedObjectClassesByOperation(java.lang.Class<? extends APIOperation> apiop)
Returns the supported object classes for the given operation.java.util.Set<OperationOptionInfo>
Schema. getSupportedOptionsByOperation(java.lang.Class<? extends APIOperation> apiop)
Returns the supported options for the given operation.Constructor parameters in org.identityconnectors.framework.common.objects with type arguments of type APIOperation Constructor Description Schema(java.util.Set<ObjectClassInfo> info, java.util.Set<OperationOptionInfo> options, java.util.Map<java.lang.Class<? extends APIOperation>,java.util.Set<ObjectClassInfo>> supportedObjectClassesByOperation, java.util.Map<java.lang.Class<? extends APIOperation>,java.util.Set<OperationOptionInfo>> supportedOptionsByOperation)
Public only for serialization; please use SchemaBuilder instead.
-