Oracle® Fusion Middleware .NET API Reference for Identity Connector Framework  E57662-01
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties
Public Member Functions | Properties | List of all members
Org.IdentityConnectors.Framework.Common.Objects.ScriptContext Class Reference

Encapsulates a script and all of its parameters. More...

Public Member Functions

 ScriptContext (String scriptLanguage, String scriptText, IDictionary< String, Object > scriptArguments)
 Public only for serialization; please use ScriptContextBuilder. More...
 
override string ToString ()
 

Properties

String ScriptLanguage [get]
 Identifies the language in which the script is written (e.g., More...
 
String ScriptText [get]
 Returns the text (i.e., actual characters) of the script. More...
 
IDictionary< String, Object > ScriptArguments [get]
 Returns a map of arguments to be passed to the script. More...
 

Detailed Description

Encapsulates a script and all of its parameters.

See also
Org.IdentityConnectors.Framework.Api.Operations.ScriptOnResourceApiOp, Org.IdentityConnectors.Framework.Api.Operations.ScriptOnConnectorApiOp

Constructor & Destructor Documentation

Org.IdentityConnectors.Framework.Common.Objects.ScriptContext.ScriptContext ( String  scriptLanguage,
String  scriptText,
IDictionary< String, Object >  scriptArguments 
)

Public only for serialization; please use ScriptContextBuilder.

Parameters
scriptLanguageThe script language. Must not be null.
scriptTextThe script text. Must not be null.
scriptArgumentsThe script arguments. May be null.

Property Documentation

IDictionary<String, Object> Org.IdentityConnectors.Framework.Common.Objects.ScriptContext.ScriptArguments
get

Returns a map of arguments to be passed to the script.

Values must be types that the framework can serialize. See Org.IdentityConnectors.Framework.Common.Serializer.ObjectSerializerFactory for a list of supported types.

Returns
A map of arguments to be passed to the script.
String Org.IdentityConnectors.Framework.Common.Objects.ScriptContext.ScriptLanguage
get

Identifies the language in which the script is written (e.g.,

bash, csh, Perl4 or Python).

Returns
The script language.
String Org.IdentityConnectors.Framework.Common.Objects.ScriptContext.ScriptText
get

Returns the text (i.e., actual characters) of the script.

Returns
The text of the script.

The documentation for this class was generated from the following file: