Interface ScriptOnConnectorApiOp
-
- All Superinterfaces:
APIOperation
- All Known Subinterfaces:
ConnectorFacade
- All Known Implementing Classes:
AbstractConnectorFacade
,LocalConnectorFacadeImpl
,RemoteConnectorFacadeImpl
,ScriptOnConnectorImpl
public interface ScriptOnConnectorApiOp extends APIOperation
Runs a script in the same JVM or .Net Runtime as theConnector
. That is, if you are using a local framework, the script will be run in your JVM. If you are connected to a remote framework, the script will be run in the remote JVM or .Net Runtime.This API allows an application to run a script in the context of any connector. (A connector need not implement any particular interface in order to enable this.) The minimum contract to which each connector must adhere is as follows:
- Script will run in the same classloader/execution environment as the connector, so the script will have access to all the classes to which the connector has access.
- Script will have access to a
"connector"
variable that is equivalent to an initialized instance of a connector. Thus, at a minimum the script will be able to accessthe configuration of the connector
. - Script will have access to any
script-arguments
passed in by the application.
A connector that implements
ScriptOnConnectorOp
may provide more variables than what is described above. A connector also may perform special processing forOperationOptions
specific to that connector. Consult the javadoc of each particular connector to find out what additional capabilities, if any, that connector exposes for use in scripts.NOTE: A caller who wants to execute scripts on a connector should assume that a script must not use any method of the connector beyond the minimum contract described above, unless the connector explicitly documents that method as "for use by connector script". The primary function of a connector is to implement the SPI in the context of the Connector framework. In general, no caller should invoke Connector methods directly --whether by a script or by other means.
-
-
Field Summary
-
Fields inherited from interface org.identityconnectors.framework.api.operations.APIOperation
NO_TIMEOUT
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
runScriptOnConnector(ScriptContext request, OperationOptions options)
Runs the script.
-
-
-
Method Detail
-
runScriptOnConnector
Object runScriptOnConnector(ScriptContext request, OperationOptions options)
Runs the script.- Parameters:
request
- The script and arguments to run.options
- Additional options that control how the script is run. The framework does not currently recognize any options but specific connectors might. Consult the documentation for each connector to identify supported options.- Returns:
- The result of the script. The return type must be a type that the framework supports for serialization.
- See Also:
for a list of supported return types.
-
-