Package de.uplanet.lucy.usermanager
Interface ILogonUser
- All Known Subinterfaces:
IUser
- All Known Implementing Classes:
de.uplanet.lucy.server.usermanager.AbstractUser
,User
public interface ILogonUser
-
Method Summary
Modifier and TypeMethodDescriptionGet the first name of the user.Get the full name of the user.getGuid()
Get the GUID of the user.Get the last name of the user.Get the login domain of the user.Get the login name of the user.Get the middle name of the user.Get the qualified login name of the user.Get the time zone of the user.getTitle()
Get the title of the user.
-
Method Details
-
getGuid
String getGuid()Get the GUID of the user.- Returns:
- The user's GUID.
-
getQualifiedLoginName
String getQualifiedLoginName()Get the qualified login name of the user.- Returns:
- The user's qualified login name.
-
getLoginName
String getLoginName()Get the login name of the user.- Returns:
- The user's login name.
-
getLoginDomain
String getLoginDomain()Get the login domain of the user.- Returns:
- The user's login domain.
-
getFullName
String getFullName()Get the full name of the user.- Returns:
- The user's full name.
-
getFirstName
String getFirstName()Get the first name of the user.- Returns:
- The user's first name.
-
getLastName
String getLastName()Get the last name of the user.- Returns:
- The user's last name.
-
getMiddleName
String getMiddleName()Get the middle name of the user.- Returns:
- The user's middle name.
-
getTitle
String getTitle()Get the title of the user.- Returns:
- The user's title.
-
getTimeZoneId
String getTimeZoneId()Get the time zone of the user.- Returns:
- The user's time zone.
-