Oracle Waveset 8.1.1 Resources Reference

create Action

The create action creates a user in the host application. If the create action is not defined, then new users cannot be added to the host application.

Context

The actionContext map will contain the following entries:

Key  

Value Type  

Value Description  

hostAccess

com.waveset.adapter.HostAccess 

Provides 3270 emulation access to a mainframe. 

adapter

com.waveset.object.ScriptedHostResourceAdapter 

Adapter instance. 

action

java.lang.String 

The string create.

id

java.lang.String 

Account ID of the user to create. 

password

java.lang.String 

If present, this is the decrypted password for the new user. 

attributes

java.lang.Map 

Map of attributes to set for the new user. The key identifies the attribute to set, and the value is the decrypted value to which the attribute should be set. 

errors

java.util.List 

This is initially an empty list. The script must add java.lang.String objects to this list if any errors are found during processing. 

trace

com.waveset.adapter.Trace 

An object used to trace execution. Scripts can use methods of this class to make itself “debuggable” in a customer environment. 

Error Handling

If any application-specific errors are found in a screen or response, the script should add appropriate strings to the errors key. Determining that an error has occurred may require a string search for various known error strings.

The presence of any items in the errors List is considered a creation failure. Additionally, any throw from within the script is considered a creation failure.