Package edm.edom3
Interface EDMUser
-
- All Superinterfaces:
EDMContextDependent
,EDMData
,EDMUserOrGroup
public interface EDMUser extends EDMUserOrGroup
Interface wrapping an EDMdatabase use- Author:
- aet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getFullName()
Retrieve optional full name for userboolean
isSuperuser()
check if this user has general administrative rightsvoid
setFullName(java.lang.String name)
Set optional full name for uservoid
setPassword(java.lang.String password)
Set the users password (superuser only)-
Methods inherited from interface edm.edom3.EDMContextDependent
getContext
-
-
-
-
Method Detail
-
getFullName
java.lang.String getFullName() throws EdmiException
Retrieve optional full name for user- Returns:
- full name, null if not set
- Throws:
EdmiException
- if the method fails
-
setFullName
void setFullName(java.lang.String name) throws EdmiException
Set optional full name for user- Parameters:
name
- full name, ex. Arne Toen, EPM Technology AS- Throws:
EdmiException
- if the method fails
-
setPassword
void setPassword(java.lang.String password) throws EdmiException
Set the users password (superuser only)- Parameters:
password
- new user password- Throws:
EdmiException
- if the method fails
-
isSuperuser
boolean isSuperuser() throws EdmiException
check if this user has general administrative rights- Returns:
- true if the user has general administrative rights
- Throws:
EdmiException
- if the method fails
-
-