Class User

Top Previous Topic Next Topic  Print this topic

The User class specifies details about Ecrion Omni System users.

 

Members/Properties

 

Name

Description

UserName

Specifies the user name of an Ecrion Omni System user.

Password

Specifies the password of an Ecrion Omni System user.

DisplayName

Specifies the display name of an Ecrion Omni System user.

Email

Specifies the email address of an Ecrion Omni System user.

Settings

Specifies the settings associated with an Ecrion Omni System user.

StandardACL

Specifies standard access rights granted to an Ecrion Omni System user.

AdvancedACL

Specifies advanced access rights granted to an Ecrion Omni System user.

UserGroups

Specifies the user groups to which an Ecrion Omni System user belongs.

 

 

UserName

 

Specifies the user name of an Ecrion Omni System user. This value is mandatory.

 

 

       public String UserName;

 

 

 

Password

 

Specifies the password of an Ecrion Omni System user. This value is mandatory.

 

 

       public String Password;

 

 

 

DisplayName

 

Specifies the display name of an Ecrion Omni System user.

 

 

       public String DisplayName;

 

 

 

Email

 

Specifies the email address of an Ecrion Omni System user. This value is mandatory.

 

 

       public String Email;

 

 

 

Settings

 

Specifies the settings associated with an Ecrion Omni System user. This member is of type UserSettings.

 

 

       public UserSettings Settings;

 

 

 

StandardACL

 

Array which specifies standard access rights granted to an Ecrion Omni System user. The array is of type StandardAccessRights.

 

 

       public StandardAccessRights[] StandardACL;

 

 

 

AdvancedACL

 

Array which specifies advanced access rights granted to an Ecrion Omni System user.

 

Example of possible values: "FileAllow:*" or "FileDeny:*.wkf" or "FileDeny:Test\*" or "FileDeny:*|FileAllow:Test\*" or "FileAllowWrite:*" or "FileDenyWrite:Test\*"

 

 

       public String[] AdvancedACL;

 

 

 

UserGroups

 

This array specifies the user groups to which an Ecrion Omni System user belongs.

 

 

       public String[] UserGroups;