Interface IPentahoUser
-
- All Superinterfaces:
Serializable
public interface IPentahoUser extends Serializable
A user of the Pentaho platform. Contains a set of roles for which this user is a member.- Author:
- mlowery
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
String
getPassword()
ITenant
getTenant()
String
getUsername()
boolean
isEnabled()
void
setDescription(String description)
void
setEnabled(boolean enabled)
void
setPassword(String password)
-
-
-
Method Detail
-
getUsername
String getUsername()
-
getTenant
ITenant getTenant()
-
getPassword
String getPassword()
-
setPassword
void setPassword(String password)
-
isEnabled
boolean isEnabled()
-
setEnabled
void setEnabled(boolean enabled)
-
getDescription
String getDescription()
-
setDescription
void setDescription(String description)
-
-