Class AccountCredentials

java.lang.Object
no.idata1002.group19.domain.entity.AccountCredentials

public class AccountCredentials extends Object
Represents the account credentials entity that contains the user's login information such as username and password.
Since:
16.04.2023
Version:
23.04.2023
Author:
Group19
  • Constructor Details

    • AccountCredentials

      public AccountCredentials()
  • Method Details

    • getUsername

      public String getUsername()
      Gets the username of the user.
      Returns:
      the username of the user.
    • setUsername

      public void setUsername(String username)
      Sets the username of the user.
      Parameters:
      username - the username of the user.
    • getPassword

      public String getPassword()
      Gets the password of the user.
      Returns:
      the password of the user.
    • setPassword

      public void setPassword(String password)
      Sets the password of the user.
      Parameters:
      password - the password of the user.