TIBCO EMS .NET API 8.4
TIBCO EMS .NET API 8.4
|
This class represents a user on the TIBCO EMS server. More...
Public Member Functions | |
UserInfo (string userName, string description) | |
Public constructor to create a UserInfo. More... | |
UserInfo (string userName) | |
Public constructor to create a UserInfo with no description. More... | |
override string | ToString () |
Generate a string representation of this UserInfo. More... | |
![]() | |
override string | ToString () |
Generate a string representation of this PrincipalInfo. More... | |
Properties | |
String | Password [set] |
Set the password for this user. More... | |
![]() | |
string | Name [get] |
Get the name of this user or group. More... | |
string | Description [get, set] |
Get or set the description of this user or group. More... | |
bool | External [get] |
Indicates whether or not this user or group is external. More... | |
This class represents a user on the TIBCO EMS server.
A user can be a principal in access control.
|
inline |
Public constructor to create a UserInfo.
The user will not be created on the server until the UserInfo is passed to Admin.CreateUser().
userName | The name of the new user. |
description | The description for the new user. |
|
inline |
Public constructor to create a UserInfo with no description.
The user will not be created on the server until the UserInfo is passed to Admin.CreateUser().
userName | The name of the new user. |
|
inline |
|
set |
Set the password for this user.
The user must be saved with a call to Admin.UpdateUser() before the change will take effect on the server. It is an error to attempt to set the password of an external user.
AdminException | if the user is external. |