org.firebirdsql.management
Interface User
- FBUser
A user in the Firebird Security Database.
String | getFirstName()
|
int | getGroupId()
|
String | getLastName()
|
String | getMiddleName()
|
String | getPassword() - Returns the password as set by setPassword.
|
int | getUserId()
|
String | getUserName()
|
void | setFirstName(String firstName) - Optional first name of the person using this user name.
|
void | setGroupId(int groupId) - Optional group ID number, defined in /etc/group, to assign to the user in
security database; reserved for future implementation
|
void | setLastName(String lastName) - Optional last name of the person using this user name.
|
void | setMiddleName(String middleName) - Optional middle name of the person using this user name.
|
void | setPassword(String password) - Password for the specified user.
|
void | setUserId(int userId) - Optional user ID number, defined in /etc/passwd, to assign to the user in
security database; reserved for future implementation
|
void | setUserName(String username) - User name to create in security database.
|
getFirstName
public String getFirstName()
- first name of the person using this user name.
getGroupId
public int getGroupId()
getLastName
public String getLastName()
- last name of the person using this user name.
getMiddleName
public String getMiddleName()
- middle name of the person using this user name.
getPassword
public String getPassword()
Returns the password as set by setPassword. This will return null in most
cases and is only provided for add and update user functionality.
- the password for the specified user.
getUserId
public int getUserId()
getUserName
public String getUserName()
- the username in the security database.
setFirstName
public void setFirstName(String firstName)
Optional first name of the person using this user name.
setGroupId
public void setGroupId(int groupId)
Optional group ID number, defined in /etc/group, to assign to the user in
security database; reserved for future implementation
setLastName
public void setLastName(String lastName)
Optional last name of the person using this user name.
setMiddleName
public void setMiddleName(String middleName)
Optional middle name of the person using this user name.
setPassword
public void setPassword(String password)
Password for the specified user. Maximum length is 31 characters. Only
first 8 characters are significant.
setUserId
public void setUserId(int userId)
Optional user ID number, defined in /etc/passwd, to assign to the user in
security database; reserved for future implementation
setUserName
public void setUserName(String username)
User name to create in security database. Maximum length is 31
characters. Manditory for all operations. Must be unique.
Copyright B) 2001 David Jencks and other authors. All rights reserved.