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 interfaceConnectorFacadeMain interface through which an application invokes Connector operations.Methods in org.identityconnectors.framework.api that return APIOperation Modifier and Type Method Description APIOperationConnectorFacade. getOperation(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 Set<Class<? extends APIOperation>>ConfigurationProperty. getOperations()Set of operations for which this property must be specified.Set<Class<? extends APIOperation>>APIConfiguration. getSupportedOperations()Get the set of operations that thisConnectorFacadewill support.Set<Class<? extends APIOperation>>ConnectorFacade. getSupportedOperations()Get the set of operations that thisConnectorFacadewill support.Method parameters in org.identityconnectors.framework.api with type arguments of type APIOperation Modifier and Type Method Description APIOperationConnectorFacade. getOperation(Class<? extends APIOperation> clazz)Get an instance of an operation that this facade supports.intAPIConfiguration. getTimeout(Class<? extends APIOperation> operation)Gets the timeout in milliseconds based on the operation provided.voidAPIConfiguration. setTimeout(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 interfaceAuthenticationApiOpinterfaceCreateApiOpinterfaceDeleteApiOpinterfaceDiscoverConfigurationApiOpAPI operation interface for configuration discovery, check and recommendation.interfaceGetApiOpGet a particularConnectorObjectbased on theUid.interfaceLiveSyncApiOpPoll for synchronization events--i.e., native changes to target objects.interfaceResolveUsernameApiOpinterfaceSchemaApiOpGet the schema from theConnector.interfaceScriptOnConnectorApiOpRuns a script in the same JVM or .Net Runtime as theConnector.interfaceScriptOnResourceApiOpRuns a script on the target resource that a connector manages.interfaceSearchApiOpinterfaceSyncApiOpPoll for synchronization events--i.e., native changes to target objects.interfaceTestApiOpTests theconfigurationwith the connector.interfaceUpdateApiOpUpdates aConnectorObject.interfaceUpdateDeltaApiOpinterfaceValidateApiOpValidates 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 Set<Class<? extends APIOperation>>FrameworkUtil. allAPIOperations()Return all the knownAPIOperations.static Set<Class<? extends APIOperation>>FrameworkUtil. getDefaultSupportedOperations(Class<? extends Connector> connector)Determines the default set of operations that aConnectorsupports.static Set<Class<? extends APIOperation>>FrameworkUtil. getUnconditionallySupportedOperations()Returns the set of operations that are always supported.static Set<Class<? extends APIOperation>>FrameworkUtil. spi2apis(Class<? extends SPIOperation> spi)Converts aSPIOperationto 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 Map<Class<? extends APIOperation>,Set<ObjectClassInfo>>Schema. getSupportedObjectClassesByOperation()Returns the set of object classes that apply to a particular operation.Map<Class<? extends APIOperation>,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 Set<ObjectClassInfo>Schema. getSupportedObjectClassesByOperation(Class<? extends APIOperation> apiop)Returns the supported object classes for the given operation.Set<OperationOptionInfo>Schema. getSupportedOptionsByOperation(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(Set<ObjectClassInfo> info, Set<OperationOptionInfo> options, Map<Class<? extends APIOperation>,Set<ObjectClassInfo>> supportedObjectClassesByOperation, Map<Class<? extends APIOperation>,Set<OperationOptionInfo>> supportedOptionsByOperation)Public only for serialization; please use SchemaBuilder instead.
-