Package com.jdbc.view

Class DB2024TEAM07_UserVO

java.lang.Object
com.jdbc.view.DB2024TEAM07_UserVO

public class DB2024TEAM07_UserVO extends Object
This class represents a Value Object (VO) for a user in the E-MATEASY application. A VO is a plain data transfer object that encapsulates data related to a specific entity (in this case, a user) without any business logic or behavior.
  • Field Details

    • user_id

      private String user_id
    • name

      private String name
    • email

      private String email
  • Constructor Details

    • DB2024TEAM07_UserVO

      public DB2024TEAM07_UserVO()
    • DB2024TEAM07_UserVO

      public DB2024TEAM07_UserVO(String user_id, String name, String email)
      Constructor to initialize all fields of the VO.
      Parameters:
      user_id - unique identifier for the user
      name - name of the user
      email - email address of the user
  • Method Details

    • getUser_id

      public String getUser_id()
      Getter method for the user ID.
      Returns:
      the user ID
    • getName

      public String getName()
      Getter method for the user name.
      Returns:
      the username
    • getEmail

      public String getEmail()
      Getter method for the user email.
      Returns:
      the user email