Package com.jdbc.view
Class DB2024TEAM07_UserVO
java.lang.Object
com.jdbc.view.DB2024TEAM07_UserVO
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 Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDB2024TEAM07_UserVO(String user_id, String name, String email) Constructor to initialize all fields of the VO. -
Method Summary
-
Field Details
-
user_id
-
name
-
email
-
-
Constructor Details
-
DB2024TEAM07_UserVO
public DB2024TEAM07_UserVO() -
DB2024TEAM07_UserVO
Constructor to initialize all fields of the VO.- Parameters:
user_id- unique identifier for the username- name of the useremail- email address of the user
-
-
Method Details
-
getUser_id
Getter method for the user ID.- Returns:
- the user ID
-
getName
Getter method for the user name.- Returns:
- the username
-
getEmail
Getter method for the user email.- Returns:
- the user email
-