Interface CreateUserDialogHandle
- All Superinterfaces:
DialogHandle, UiContainer
Typed handle for the dialog shown by the "Windows user selector" form component when its
"Create User..." button is clicked.
Reach this handle via Session.createUserDialog().
-
Method Summary
Modifier and TypeMethodDescriptionvoidcancel()Cancel the dialog without creating a user.voidconfirm()Confirm the dialog.setDescription(String description) Set the user description.setGroupName(String group) Set the group name.setPassword(String password) Set the password.setRepeatPassword(String password) Set the password-repeat field.setUserName(String name) Set the username.Methods inherited from interface DialogHandle
clickWindowClose, getTitleMethods inherited from interface UiContainer
dumpAsString, saveScreenshot
-
Method Details
-
setUserName
Set the username. -
setDescription
Set the user description. -
setGroupName
Set the group name. -
setPassword
Set the password. -
setRepeatPassword
Set the password-repeat field. -
confirm
void confirm()Confirm the dialog. The user-selector model receives the resulting SID and the form's configured variable is populated when the screen completes. -
cancel
void cancel()Cancel the dialog without creating a user.
-