Uses of Class
alpine.model.LdapUser
-
Packages that use LdapUser Package Description alpine.auth This package contains authentication and authorization related classes.alpine.model This package contains model classes.alpine.persistence This package contains functionality related to persistence including query managers and startup initializers. -
-
Uses of LdapUser in alpine.auth
Methods in alpine.auth with parameters of type LdapUser Modifier and Type Method Description List<String>LdapConnectionWrapper. getGroups(DirContext dirContext, LdapUser ldapUser)Retrieves a list of all groups the user is a member of. -
Uses of LdapUser in alpine.model
Methods in alpine.model that return types with arguments of type LdapUser Modifier and Type Method Description List<LdapUser>Permission. getLdapUsers()List<LdapUser>Team. getLdapUsers()Method parameters in alpine.model with type arguments of type LdapUser Modifier and Type Method Description voidPermission. setLdapUsers(List<LdapUser> ldapUsers)voidTeam. setLdapUsers(List<LdapUser> ldapUsers) -
Uses of LdapUser in alpine.persistence
Methods in alpine.persistence that return LdapUser Modifier and Type Method Description LdapUserAlpineQueryManager. createLdapUser(String username)Creates a new LdapUser object with the specified username.LdapUserAlpineQueryManager. getLdapUser(String username)Retrieves an LdapUser containing the specified username.LdapUserAlpineQueryManager. synchronizeTeamMembership(LdapUser user, List<String> groupDNs)This method dynamically assigns team membership to the specified user from the list of LDAP group DN's the user is a member of.LdapUserAlpineQueryManager. updateLdapUser(LdapUser transientUser)Updates the specified LdapUser.Methods in alpine.persistence that return types with arguments of type LdapUser Modifier and Type Method Description List<LdapUser>AlpineQueryManager. getLdapUsers()Returns a complete list of all LdapUser objects, in ascending order by username.Methods in alpine.persistence with parameters of type LdapUser Modifier and Type Method Description LdapUserAlpineQueryManager. synchronizeTeamMembership(LdapUser user, List<String> groupDNs)This method dynamically assigns team membership to the specified user from the list of LDAP group DN's the user is a member of.LdapUserAlpineQueryManager. updateLdapUser(LdapUser transientUser)Updates the specified LdapUser.
-