Uses of Interface
org.identityconnectors.framework.api.operations.APIOperation

Packages that use APIOperation
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
 interface ConnectorFacade
          Main interface through which an application invokes Connector operations.
 

Methods in org.identityconnectors.framework.api that return APIOperation
 APIOperation ConnectorFacade.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
 Set<Class<? extends APIOperation>> ConfigurationProperty.getOperations()
          Set of operations for which this property must be specified.
 Set<Class<? extends APIOperation>> ConnectorFacade.getSupportedOperations()
          Get the set of operations that this ConnectorFacade will support.
 Set<Class<? extends APIOperation>> APIConfiguration.getSupportedOperations()
          Get the set of operations that this ConnectorFacade will support.
 

Method parameters in org.identityconnectors.framework.api with type arguments of type APIOperation
 APIOperation ConnectorFacade.getOperation(Class<? extends APIOperation> clazz)
          Get an instance of an operation that this facade supports.
 int APIConfiguration.getTimeout(Class<? extends APIOperation> operation)
          Gets the timeout in milliseconds based on the operation provided.
 void APIConfiguration.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
 interface AuthenticationApiOp
           
 interface CreateApiOp
           
 interface DeleteApiOp
           
 interface GetApiOp
          Get a particular ConnectorObject based on the Uid.
 interface ResolveUsernameApiOp
           
 interface SchemaApiOp
          Get the schema from the Connector.
 interface ScriptOnConnectorApiOp
          Runs a script in the same JVM or .Net Runtime as the Connector.
 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 TestApiOp
          Tests the configuration with the connector.
 interface UpdateApiOp
          Updates a ConnectorObject.
 interface ValidateApiOp
          Validates the configuration.
 

Uses of APIOperation in org.identityconnectors.framework.common
 

Methods in org.identityconnectors.framework.common that return types with arguments of type APIOperation
static Set<Class<? extends APIOperation>> FrameworkUtil.allAPIOperations()
          Return all the known APIOperations.
static Set<Class<? extends APIOperation>> FrameworkUtil.getDefaultSupportedOperations(Class<? extends Connector> connector)
          Determines the default set of operations that a Connector supports.
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 a SPIOperation to an set of APIOperation.
 

Uses of APIOperation in org.identityconnectors.framework.common.objects
 

Methods in org.identityconnectors.framework.common.objects that return types with arguments of type APIOperation
 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
 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
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.
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.
 



Copyright © 2012. All Rights Reserved.