public interface IUser
| Modifier and Type | Method and Description | 
|---|---|
String | 
getDescription()
Get the user's description 
 | 
String | 
getLogin()
Get the login  for a the user 
 | 
String | 
getName()
The name of the user maps to the login id 
 | 
org.pentaho.di.repository.ObjectId | 
getObjectId()
Get the object id 
 | 
String | 
getPassword()
Get the password for the user 
 | 
String | 
getUsername()
Get the user name for the user 
 | 
boolean | 
isEnabled()
Check if the user is enabled or not 
 | 
void | 
setDescription(String description)
Set the description of the user 
 | 
void | 
setEnabled(boolean enabled)
Make the user enabled or disabled 
 | 
void | 
setLogin(String login)
Set the login for the user 
 | 
void | 
setName(String name)
Set the name of the user. 
 | 
void | 
setObjectId(org.pentaho.di.repository.ObjectId id)
Set the object id of this user 
 | 
void | 
setPassword(String password)
Set the password for the 
 | 
void | 
setUsername(String username)
Set the user name for the user 
 | 
void setLogin(String login)
login - String getLogin()
void setPassword(String password)
password - String getPassword()
void setUsername(String username)
username - String getUsername()
void setDescription(String description)
description - String getDescription()
void setEnabled(boolean enabled)
enabled - boolean isEnabled()
org.pentaho.di.repository.ObjectId getObjectId()
void setObjectId(org.pentaho.di.repository.ObjectId id)
object - idString getName()
void setName(String name)
name - The name of the user maps to the login id.