Uses of Class
org.salespointframework.useraccount.UserAccount
Packages that use UserAccount
Package
Description
The order subsystem.
User account management.
-
Uses of UserAccount in org.salespointframework.order
Methods in org.salespointframework.order with parameters of type UserAccountModifier and TypeMethodDescriptionCart.createOrderFor(UserAccount user) Deprecated, for removal: This API element is subject to removal in a future version.OrderManagement.findBy(UserAccount userAccount) Returns allOrders of the givenUserAccount.OrderManagement.findBy(UserAccount userAccount, Interval interval) Returns allOrders from the givenUserAccountin between the datesfromandto, including from and to.Constructors in org.salespointframework.order with parameters of type UserAccountModifierConstructorDescriptionOrder(UserAccount userAccount) Deprecated, for removal: This API element is subject to removal in a future version.since 9.0.Order(UserAccount userAccount, PaymentMethod paymentMethod) Deprecated, for removal: This API element is subject to removal in a future version.since 9.0. -
Uses of UserAccount in org.salespointframework.useraccount
Methods in org.salespointframework.useraccount that return UserAccountModifier and TypeMethodDescriptionUserAccountManagement.create(String userName, Password.UnencryptedPassword password, Iterable<Role> roles) Creates a newUserAccountfrom the given username,Password.UnencryptedPasswordand roles.UserAccountManagement.create(String userName, Password.UnencryptedPassword password, String emailAddress, Iterable<Role> roles) Creates a newUserAccountfrom the given username,Password.UnencryptedPassword, email address and roles.UserAccountManagement.create(String userName, Password.UnencryptedPassword password, String emailAddress, Role... roles) Creates a newUserAccountfrom the given username,Password.UnencryptedPassword, email address and roles.UserAccountManagement.create(String userName, Password.UnencryptedPassword password, Role... roles) Creates a newUserAccountfrom the given username,Password.UnencryptedPasswordand roles.UserAccountManagement.delete(UserAccount account) Deletes the givenUserAccount.UserAccountManagement.save(UserAccount userAccount) Saves theUserAccountUserAccount.setEnabled(boolean enabled) UserAccount.setFirstname(String firstname) UserAccount.setLastname(String lastname) UserAccount.setUsername(String username) Methods in org.salespointframework.useraccount that return types with arguments of type UserAccountModifier and TypeMethodDescriptionUserAccountManagement.findAll()Finds allUserAccounts.UserAccountManagement.findByUsername(String username) Returns the user with the given user name.UserAccountManagement.findDisabled()Finds only disabledUserAccounts.UserAccountManagement.findEnabled()Finds only enabledUserAccounts.UserAccountManagement.get(UserAccount.UserAccountIdentifier userAccountIdentifier) Returns anUserAccountfor a given identifier.AuthenticationManagement.getCurrentlyLoggedInUserAccounts()Returns allUserAccounts for the users currently logged into the system.AuthenticationManagement.getCurrentUser()Returns theUserAccountof the currently logged in user orOptional.empty()if no-one is currently logged in.Methods in org.salespointframework.useraccount with parameters of type UserAccountModifier and TypeMethodDescriptionvoidUserAccountManagement.changePassword(UserAccount userAccount, Password.UnencryptedPassword password) Changes the password of theUserAccount.UserAccountManagement.delete(UserAccount account) Deletes the givenUserAccount.UserAccountManagement.save(UserAccount userAccount) Saves theUserAccountvoidAuthenticationManagement.updateAuthentication(UserAccount account) Updates the current authentication to the givenUserAccount.
Cart.createOrderFor(UserAccountIdentifier)instead.