Provides the information for a user in a database system
More...
|
| User (string name) |
| Constructs a new user with the given name. More...
|
|
|
string | Name [get, private set] |
| Gets the name that uniquely identify a user within a database system. More...
|
|
bool | IsSystem [get] |
| Gets a boolean value indicating if this user represents the SYSTEM special user. More...
|
|
bool | IsPublic [get] |
| Gets a boolean value indicating if this user represents the PUBLIC special user. More...
|
|
Provides the information for a user in a database system
Definition at line 27 of file User.cs.
Deveel.Data.Security.User.User |
( |
string |
name | ) |
|
|
inlinepackage |
Constructs a new user with the given name.
- Parameters
-
Definition at line 37 of file User.cs.
38 if (
String.IsNullOrEmpty(name))
39 throw new ArgumentNullException(
"name");
A long string in the system.
string Name
Gets the name that uniquely identify a user within a database system.
const string Deveel.Data.Security.User.PublicName = "@PUBLIC" |
The name of the PUBLIC
special user.
Definition at line 47 of file User.cs.
const string Deveel.Data.Security.User.SystemName = "@SYSTEM" |
The name of the SYSTEM
special user.
Definition at line 52 of file User.cs.
bool Deveel.Data.Security.User.IsPublic |
|
get |
Gets a boolean value indicating if this user represents the PUBLIC
special user.
Definition at line 72 of file User.cs.
bool Deveel.Data.Security.User.IsSystem |
|
get |
Gets a boolean value indicating if this user represents the SYSTEM
special user.
- See also
- SystemName
Definition at line 64 of file User.cs.
string Deveel.Data.Security.User.Name |
|
getprivate set |
Gets the name that uniquely identify a user within a database system.
Definition at line 57 of file User.cs.
The documentation for this class was generated from the following file:
- /var/calculate/remote/distfiles/egit-src/deveeldb.git/src/deveeldb/Deveel.Data.Security/User.cs