Uses of Interface
alpine.model.UserPrincipal
-
Packages that use UserPrincipal Package Description alpine.model This package contains model classes.alpine.persistence This package contains functionality related to persistence including query managers and startup initializers.alpine.util This package contains a collection of various utilities. -
-
Uses of UserPrincipal in alpine.model
Classes in alpine.model that implement UserPrincipal Modifier and Type Class Description classLdapUserPersistable object representing an LdapUser.classManagedUserPersistable object representing an ManagedUser.classOidcUserPersistable object representing an OpenID Connect user. -
Uses of UserPrincipal in alpine.persistence
Methods in alpine.persistence that return UserPrincipal Modifier and Type Method Description UserPrincipalAlpineQueryManager. getUserPrincipal(String username)Resolves a UserPrincipal.Methods in alpine.persistence with parameters of type UserPrincipal Modifier and Type Method Description booleanAlpineQueryManager. addUserToTeam(UserPrincipal user, Team team)Associates a UserPrincipal to a Team.List<Permission>AlpineQueryManager. getEffectivePermissions(UserPrincipal user)Determines the effective permissions for the specified user by collecting a List of all permissions assigned to the user either directly, or through team membership.booleanAlpineQueryManager. hasPermission(UserPrincipal user, String permissionName)Determines if the specified UserPrincipal has been assigned the specified permission.booleanAlpineQueryManager. hasPermission(UserPrincipal user, String permissionName, boolean includeTeams)Determines if the specified UserPrincipal has been assigned the specified permission.booleanAlpineQueryManager. removeUserFromTeam(UserPrincipal user, Team team)Removes the association of a UserPrincipal to a Team. -
Uses of UserPrincipal in alpine.util
Methods in alpine.util with parameters of type UserPrincipal Modifier and Type Method Description static StringGravatarUtil. getGravatarUrl(UserPrincipal userPrincipal)Generates a Gravatar URL for the specified principal.static StringGravatarUtil. getGravatarUrl(UserPrincipal userPrincipal, int size)Generates a Gravatar URL for the specified principal.
-