Uses of Class
alpine.model.ManagedUser
-
Packages that use ManagedUser 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 ManagedUser in alpine.auth
Methods in alpine.auth with parameters of type ManagedUser Modifier and Type Method Description static booleanPasswordService. matches(char[] assertedPassword, ManagedUser user)Checks the validity of the asserted password against a ManagedUsers actual hashed password. -
Uses of ManagedUser in alpine.model
Methods in alpine.model that return types with arguments of type ManagedUser Modifier and Type Method Description List<ManagedUser>Permission. getManagedUsers()List<ManagedUser>Team. getManagedUsers()Method parameters in alpine.model with type arguments of type ManagedUser Modifier and Type Method Description voidPermission. setManagedUsers(List<ManagedUser> managedUsers)voidTeam. setManagedUsers(List<ManagedUser> managedUsers) -
Uses of ManagedUser in alpine.persistence
Methods in alpine.persistence that return ManagedUser Modifier and Type Method Description ManagedUserAlpineQueryManager. createManagedUser(String username, String passwordHash)Creates a new ManagedUser object.ManagedUserAlpineQueryManager. createManagedUser(String username, String fullname, String email, String passwordHash, boolean forcePasswordChange, boolean nonExpiryPassword, boolean suspended)Creates a new ManagedUser object.ManagedUserAlpineQueryManager. getManagedUser(String username)Returns a ManagedUser with the specified username.ManagedUserAlpineQueryManager. updateManagedUser(ManagedUser transientUser)Updates the specified ManagedUser.Methods in alpine.persistence that return types with arguments of type ManagedUser Modifier and Type Method Description List<ManagedUser>AlpineQueryManager. getManagedUsers()Returns a complete list of all ManagedUser objects, in ascending order by username.Methods in alpine.persistence with parameters of type ManagedUser Modifier and Type Method Description ManagedUserAlpineQueryManager. updateManagedUser(ManagedUser transientUser)Updates the specified ManagedUser.
-