Package de.uplanet.lucy.usermanager
Interface ILogonUser
-
- All Known Subinterfaces:
IUser
- All Known Implementing Classes:
GroovyUser
public interface ILogonUser
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFirstName()
Get the first name of the user.String
getFullName()
Get the full name of the user.String
getGuid()
Get the GUID of the user.String
getLastName()
Get the last name of the user.String
getLoginDomain()
Get the login domain of the user.String
getLoginName()
Get the login name of the user.String
getMiddleName()
Get the middle name of the user.String
getQualifiedLoginName()
Get the qualified login name of the user.String
getTimeZoneId()
Get the time zone of the user.String
getTitle()
Get the title of the user.
-
-
-
Method Detail
-
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.
-
-