-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUser.java
60 lines (53 loc) · 1.17 KB
/
User.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package example;
/**
* A class representing a user in the system.
*/
public class User {
private final long id;
private final String name;
private String token;
/**
* Constructs a new User with the specified id, name, and token.
*
* @param id the unique identifier of the user
* @param name the name of the user
* @param token the authentication token of the user
*/
public User(long id, String name, String token) {
this.id = id;
this.name = name;
this.token = token;
}
/**
* Gets the unique identifier of the user.
*
* @return the user ID
*/
public long getId() {
return id;
}
/**
* Gets the name of the user.
*
* @return the user name
*/
public String getName() {
return name;
}
/**
* Gets the authentication token of the user.
*
* @return the user token
*/
public String getToken() {
return token;
}
/**
* Sets a new authentication token for the user.
*
* @param token the new token
*/
public void setToken(String token) {
this.token = token;
}
}