Uses of Class
org.mybatis.jpetstore.domain.Account
Packages that use Account
Package
Description
-
Uses of Account in org.mybatis.jpetstore.domain
Methods in org.mybatis.jpetstore.domain with parameters of type Account -
Uses of Account in org.mybatis.jpetstore.mapper
Methods in org.mybatis.jpetstore.mapper that return AccountModifier and TypeMethodDescriptionAccountMapper.getAccountByUsername(String username) Get account by username.AccountMapper.getAccountByUsernameAndPassword(String username, String password) Get account by username and password.Methods in org.mybatis.jpetstore.mapper with parameters of type AccountModifier and TypeMethodDescriptionvoidAccountMapper.insertAccount(Account account) Insert account.voidAccountMapper.insertProfile(Account account) Insert profile.voidAccountMapper.insertSignon(Account account) Insert signon.voidAccountMapper.updateAccount(Account account) Update account.voidAccountMapper.updateProfile(Account account) Update profile.voidAccountMapper.updateSignon(Account account) Update signon. -
Uses of Account in org.mybatis.jpetstore.service
Methods in org.mybatis.jpetstore.service that return AccountModifier and TypeMethodDescriptionAccountService.getAccount(String username) Get account.AccountService.getAccount(String username, String password) Get account.Methods in org.mybatis.jpetstore.service with parameters of type AccountModifier and TypeMethodDescriptionvoidAccountService.insertAccount(Account account) Insert account.voidAccountService.updateAccount(Account account) Update account. -
Uses of Account in org.mybatis.jpetstore.web.actions
Methods in org.mybatis.jpetstore.web.actions that return Account