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 StringgetDescription()StringgetPassword()ITenantgetTenant()StringgetUsername()booleanisEnabled()voidsetDescription(String description)voidsetEnabled(boolean enabled)voidsetPassword(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)
-
-