The actionContext map contains the following entries:
Key |
Value Type |
Value Description |
---|---|---|
conn |
java.sql.Connection |
JDBC connection to the customer’s database |
adapter |
com.wavset.adapter.ScriptedJdbcResourceAdapter |
Adapter instance |
action |
java.lang.String |
The listAllObjects string |
objectType |
java.lang.String |
Indicates which type of object IDs should be listed. Typically, you use the account object type to list user IDs. You can use other object type IDs (such as group) if the script is written to produce IDs for other object types. |
options |
java.util.Map |
Additional (optional) options that can be passed in to the listResourceObjects invocation |
resultList |
java.util.List |
The script adds entries to this list. Each item the script adds to the list should be a string ID. |
errors |
java.util.List |
Initially, this value is an empty list. The script may add java.lang.String objects to this list if any errors are found during processing. |
trace |
com.waveset.adapter.Trace |
Object used to trace execution. Scripts can use the methods of this class to make themselves “debuggable” in a customer environment. |