Class Account

java.lang.Object
net.minheur.potoflux.login.Account

public class Account extends Object
A class that stores every useful info about an account.
The user stored by the class can be identified with it's uuid
  • Field Details

    • uuid

      public String uuid
      UUID of the user stored in this class
    • firstName

      public String firstName
      First name of the user stored in this class
    • lastName

      public String lastName
      Last name of the user stored in this class
    • email

      public String email
      Email of the user stored in this class.
      This is also the user's id, used when logging in
    • perms

      public Perms[] perms
      Actual perms of the user stored in this class
    • rank

      public int rank
      Rank of the user stored in this class
    • locked

      public boolean locked
      Weather the current user's account is locked
  • Constructor Details

    • Account

      public Account()