Interface AccountMapper


public interface AccountMapper
The Interface AccountMapper.
Author:
Eduardo Macarron
  • Method Details

    • getAccountByUsername

      Account getAccountByUsername(String username)
      Get account by username.
      Parameters:
      username - the username
      Returns:
      the account
    • getAccountByUsernameAndPassword

      Account getAccountByUsernameAndPassword(String username, String password)
      Get account by username and password.
      Parameters:
      username - the username
      password - the password
      Returns:
      the account
    • insertAccount

      void insertAccount(Account account)
      Insert account.
      Parameters:
      account - the account
    • insertProfile

      void insertProfile(Account account)
      Insert profile.
      Parameters:
      account - the account
    • insertSignon

      void insertSignon(Account account)
      Insert signon.
      Parameters:
      account - the account
    • updateAccount

      void updateAccount(Account account)
      Update account.
      Parameters:
      account - the account
    • updateProfile

      void updateProfile(Account account)
      Update profile.
      Parameters:
      account - the account
    • updateSignon

      void updateSignon(Account account)
      Update signon.
      Parameters:
      account - the account