Uses of Interface
de.uplanet.lucy.server.usermanager.IUser
-
-
Uses of IUser in de.uplanet.lucy.server
Methods in de.uplanet.lucy.server with parameters of type IUser Modifier and Type Method Description static TimeZone
ContextTimeZone. get(IUser p_user)
Get the context time zone from the user, or, if not present, the system time zone. -
Uses of IUser in de.uplanet.lucy.server.mail
Methods in de.uplanet.lucy.server.mail with parameters of type IUser Modifier and Type Method Description static SortedSet<String>
MailUtil. getBossAddresses(de.uplanet.jdbc.JdbcConnection p_conn, IUser p_user)
static String
MailUtil. getDeputyAddress(de.uplanet.jdbc.JdbcConnection p_conn, IUser p_user)
Get the mail address of the given user's deputy.static de.uplanet.lucy.server.mail.MailRecipientInfo
MailUtil. getRecipientsFromDatabase(de.uplanet.jdbc.JdbcConnection p_conn, IUser p_user, String p_strGuid, String p_strType)
Note: Do not use this method in scripts. -
Uses of IUser in de.uplanet.lucy.server.portalserver
Fields in de.uplanet.lucy.server.portalserver with type parameters of type IUser Modifier and Type Field Description static IFilter<IUser>
LoggedOnUsers. FILTER_ACCEPT_ALL
static IFilter<IUser>
LoggedOnUsers. FILTER_ACCEPT_ANONYMOUS
Methods in de.uplanet.lucy.server.portalserver that return IUser Modifier and Type Method Description IUser
GroovySession. getUser()
Methods in de.uplanet.lucy.server.portalserver that return types with arguments of type IUser Modifier and Type Method Description static List<IUser>
LoggedOnUsers. getLoggedOnUsers(boolean p_bIncludeAnonymous)
Get a list of users that are currently logged in.static List<IUser>
LoggedOnUsers. getLoggedOnUsers(boolean p_bIncludeAnonymous, groovy.lang.Closure<?> p_closure)
Get a list of users that are currently logged in.static List<IUser>
LoggedOnUsers. getLoggedOnUsers(IFilter<IUser> p_filter, boolean p_bIncludeAnonymous)
Get a list of users that are currently logged in.static List<IUser>
LoggedOnUsers. getLoggedOnUsersDistinct()
Get a distinct list of non-anonymous users that are currently logged in.static List<IUser>
LoggedOnUsers. getLoggedOnUsersDistinct(IFilter<IUser> p_filter)
Get a distinct list of non-anonymous users that pass the given filter and that are currently logged in.static List<IUser>
LoggedOnUsers. getLoggedOnUsersDistinct(groovy.lang.Closure<?> p_closure)
Get a distinct list of non-anonymous users that pass the given filter and that are currently logged in.Method parameters in de.uplanet.lucy.server.portalserver with type arguments of type IUser Modifier and Type Method Description static List<IUser>
LoggedOnUsers. getLoggedOnUsers(IFilter<IUser> p_filter, boolean p_bIncludeAnonymous)
Get a list of users that are currently logged in.static List<IUser>
LoggedOnUsers. getLoggedOnUsersDistinct(IFilter<IUser> p_filter)
Get a distinct list of non-anonymous users that pass the given filter and that are currently logged in. -
Uses of IUser in de.uplanet.lucy.server.session
Methods in de.uplanet.lucy.server.session that return IUser Modifier and Type Method Description IUser
ISession. getUser()
Get the user that is associated with the session.Methods in de.uplanet.lucy.server.session with parameters of type IUser Modifier and Type Method Description abstract void
AbstractSession. setUser(IUser p_user)
-
Uses of IUser in de.uplanet.lucy.server.usermanager.ds
Methods in de.uplanet.lucy.server.usermanager.ds with parameters of type IUser Modifier and Type Method Description void
IDsUserRecord. fromUser(IUser p_user)
-
Uses of IUser in de.uplanet.lucy.server.usermanager.groovy
Classes in de.uplanet.lucy.server.usermanager.groovy that implement IUser Modifier and Type Class Description class
GroovyUser
A user wrapper class for Groovy scripting.Methods in de.uplanet.lucy.server.usermanager.groovy that return types with arguments of type IUser Modifier and Type Method Description List<IUser>
GroovyOrgBuilder. getLoggedOnUsers(boolean p_bIncludeAnonymous)
Get a list of users that are currently logged in.List<IUser>
GroovyOrgBuilder. getLoggedOnUsers(boolean p_bIncludeAnonymous, groovy.lang.Closure<?> p_closure)
Get a list of users that are currently logged in.List<IUser>
GroovyOrgBuilder. getLoggedOnUsersDistinct()
Get a distinct list of non-anonymous users that are currently logged in.List<IUser>
GroovyOrgBuilder. getLoggedOnUsersDistinct(groovy.lang.Closure<?> p_closure)
Get a distinct list of non-anonymous users that pass the given filter and that are currently logged in.Methods in de.uplanet.lucy.server.usermanager.groovy with parameters of type IUser Modifier and Type Method Description void
GroovyOrgBuilder. changePassword(IUser p_user, String p_strNewPassword)
Set the password of the specified user.boolean
GroovyOrgBuilder. changePassword(IUser p_user, String p_strNewPassword, Boolean p_checkAcceptablePassword)
void
GroovyOrgBuilder. generateAndSendPassword(IUser p_user)
Generate a password and send it to the specified user.void
GroovyOrgBuilder. generateAndSendPassword(IUser p_user, String p_strLang)
Generate a password and send it to the specified user.Collection<GroovyDsSetNode>
GroovyOrgBuilder. getContainingSets(IUser p_user)
Get a collection of sets that directly contain the given user.Collection<GroovyDsSetNode>
GroovyOrgStructureWrapper. getContainingSets(IUser p_user)
List<AbstractGroovyDsNode>
GroovyOrgBuilder. getMembership(IUser p_user)
Get a list of containers and sets that directly or indirectly contain the given user.Collection<AbstractGroovyDsNode>
GroovyOrgStructureWrapper. getMembership(IUser p_user)
Collection<GroovyDsContainerNode>
GroovyOrgBuilder. getMembershipContainers(IUser p_user)
Get a collection of containers that directly or indirectly contain the given user.Collection<GroovyDsContainerNode>
GroovyOrgStructureWrapper. getMembershipContainers(IUser p_user)
Collection<GroovyDsSetNode>
GroovyOrgBuilder. getMembershipSets(IUser p_user)
Get a collection of sets that directly or indirectly contain the given user.Collection<GroovyDsSetNode>
GroovyOrgStructureWrapper. getMembershipSets(IUser p_user)
boolean
GroovyOrgBuilder. isUserOnline(IUser p_user)
Test if the specified user is online, i.e.
-