Class Worker

java.lang.Object
it.univr.passportease.entity.Worker
All Implemented Interfaces:
UserType

@Entity public class Worker extends Object implements UserType
The Worker class is an entity that represents a worker. The worker is the person who is responsible for the management of the offices.
  • Field Details Link icon

    • id Link icon

      private UUID id
      The id of the Worker.
    • username Link icon

      @NonNull private @NonNull String username
      The username of the Worker.
    • email Link icon

      @NonNull private @NonNull String email
      The email of the Worker.
    • hashPassword Link icon

      @NonNull private @NonNull String hashPassword
      The hash password of the Worker. Known issue: The password is not salted or peppered.
    • refreshToken Link icon

      @NonNull private @NonNull String refreshToken
      The refresh token of the Worker. Known issue: The refresh token is stored in plain text, and if the database is compromised, the attacker can impersonate the worker.
    • office Link icon

      @NonNull private @NonNull Office office
      The office of the Worker.
    • createdAt Link icon

      private Date createdAt
      The Date of creation of the Worker
    • updatedAt Link icon

      private Date updatedAt
      The Date of the last update of the Worker
  • Constructor Details Link icon

    • Worker Link icon

      public Worker()
  • Method Details Link icon

    • equals Link icon

      public final boolean equals(Object o)
      Equals method for the Worker class.
      Overrides:
      equals in class Object
      Parameters:
      o - The object to compare.
      Returns:
      true if the objects have the same id, false otherwise.
    • hashCode Link icon

      public final int hashCode()
      Hash code method for the Worker class.
      Overrides:
      hashCode in class Object
      Returns:
      The hash code of the id.