Interface IUser
public interface IUser
Represents a Mendix user, corresponding to a System.User object.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the language of the user.Returns the Mendix object that corresponds to this user, which is an instance of System.User.getName()
Returns the user name.Returns the names of the roles that the user has.isActive()
Returns whether the user is active and is allowed to log in.Returns whether the user is anonymous.Returns whether the user is blocked and is temporarily not allowed to log in.Returns whether the user is a web-service user.
-
Method Details
-
getName
String getName()Returns the user name. -
getUserRoleNames
Returns the names of the roles that the user has. -
isAnonymous
Boolean isAnonymous()Returns whether the user is anonymous. -
isWebserviceUser
Boolean isWebserviceUser()Returns whether the user is a web-service user. -
isBlocked
Boolean isBlocked()Returns whether the user is blocked and is temporarily not allowed to log in. -
isActive
Boolean isActive()Returns whether the user is active and is allowed to log in. -
getMendixObject
IMendixObject getMendixObject()Returns the Mendix object that corresponds to this user, which is an instance of System.User. -
getLanguage
ILanguage getLanguage()Returns the language of the user.
-