borland Packages Class Hierarchy datastore Package
com.borland.datastore.SysUsers
Variables
Defines the table and column names for the /SYS/USERS
system table. This table stores the users, passwords, rights and user id for each user when user authentication is enabled for a JDataStore database. Note that for security reasons the RIGHTS
and ID
fields are also encrypted into the PASSWORD
field. So the RIGHTS
and ID
fields are for display only. If modified by an intruder, they will have no affect on the security of the system.
static final String GROUP_ID = "GROUP_ID"Not currently used.
static final String ID = "ID"A string for identifying a row in the table.
static final String NAME = "NAME"The name of the user.
static final String NEW_TABLE = "/SYS/USERS.NEW"Used internally.
static final String OLD_TABLE = "/SYS/USERS.OLD"Used internally.
static final String PASS = "PASSWORD"Encrypted password for the user. Note that for security reasons the
RIGHTS
and ID
fields are also encrypted into the PASSWORD
field.
static final String RIGHTS = "RIGHTS"The rights assigned to this user.
static final String TABLE = "/SYS/USERS"The name of the
/SYS/USERS
table.