Scheme script for creating local user accounts

The following script creates an account for a local user.

Syntax:

Note: Local users run server or background processes and are not included in the user registry.
(LocalUser'new (: attribute1 value1)(: attribute2 value2)...)
Note: The user account that is created will not have any privileges and should not be used for anything other than Java Message Service (JMS) authentication.

In the following example, a local user account is created for Local User.

(let ((usr (LocalUser'new (: loginName "local2") (: alias "local2") (: updatablePassword "passWrd123"))))
   ((usr'person)'lastName "User")
   ((usr'person)'firstName "Local")
)