Uses of Class
org.salespointframework.useraccount.UserAccount
-
Packages that use UserAccount Package Description org.salespointframework.accountancy Accountancy subsystem.org.salespointframework.order The order subsystem.org.salespointframework.useraccount User account management. -
-
Uses of UserAccount in org.salespointframework.accountancy
Methods in org.salespointframework.accountancy that return UserAccount Modifier and Type Method Description UserAccountProductPaymentEntry. getUserAccount()TheUserAccountwhich thisProductPaymentEntryrefers to.Constructors in org.salespointframework.accountancy with parameters of type UserAccount Constructor Description ProductPaymentEntry(OrderIdentifier orderIdentifier, UserAccount userAccount, javax.money.MonetaryAmount amount, String description, PaymentMethod paymentMethod)AProductPaymentEntryis constructed for a specificOrderIdentifierattached to it. -
Uses of UserAccount in org.salespointframework.order
Methods in org.salespointframework.order that return UserAccount Modifier and Type Method Description UserAccountOrder. getUserAccount()Methods in org.salespointframework.order with parameters of type UserAccount Modifier and Type Method Description OrderCart. createOrderFor(UserAccount user)Creates a new Order for the givenUserAccountfrom the currentCart.org.springframework.data.util.Streamable<T>OrderManager. findBy(UserAccount userAccount)Returns allOrders of the givenUserAccount.org.springframework.data.util.Streamable<T>OrderManager. 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 UserAccount Constructor Description Order(UserAccount userAccount)Creates a new OrderOrder(UserAccount userAccount, PaymentMethod paymentMethod) -
Uses of UserAccount in org.salespointframework.useraccount
Methods in org.salespointframework.useraccount that return UserAccount Modifier and Type Method Description UserAccountUserAccountManager. create(String userName, Password.UnencryptedPassword password, String emailAddress, Role... roles)Creates a newUserAccountand persists it right away.UserAccountUserAccountManager. create(String userName, Password.UnencryptedPassword password, Role... roles)Creates a newUserAccountand persists it right away.UserAccountUserAccountManager. delete(UserAccount account)Deletes the givenUserAccount.UserAccountUserAccountManager. save(UserAccount userAccount)Saves theUserAccountMethods in org.salespointframework.useraccount that return types with arguments of type UserAccount Modifier and Type Method Description org.springframework.data.util.Streamable<UserAccount>UserAccountManager. findAll()Finds allUserAccounts.Optional<UserAccount>UserAccountManager. findByUsername(String username)Returns the user with the given user name.org.springframework.data.util.Streamable<UserAccount>UserAccountManager. findDisabled()Finds only disabledUserAccounts.org.springframework.data.util.Streamable<UserAccount>UserAccountManager. findEnabled()Finds only enabledUserAccounts.Optional<UserAccount>UserAccountManager. get(UserAccountIdentifier userAccountIdentifier)Returns anUserAccountfor a given identifier.Optional<UserAccount>AuthenticationManager. 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 UserAccount Modifier and Type Method Description voidUserAccountManager. changePassword(UserAccount userAccount, Password.UnencryptedPassword password)Changes the password of theUserAccount.UserAccountUserAccountManager. delete(UserAccount account)Deletes the givenUserAccount.UserAccountUserAccountManager. save(UserAccount userAccount)Saves theUserAccount
-