-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserInformation.java
More file actions
68 lines (52 loc) · 1.45 KB
/
Copy pathuserInformation.java
File metadata and controls
68 lines (52 loc) · 1.45 KB
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
61
62
63
64
65
66
67
68
import java.time.LocalDate;
public class userInformation {
private static String AT;
private static String name;
private static String lastname;
private static double salary;
private static int branch;
private static String password;
private static LocalDate start_date;
public static String getAT() {
return AT;
}
public static void setAT(String AT) {
userInformation.AT = AT;
}
public static String getName() {
return name;
}
public static void setName(String name) {
userInformation.name = name;
}
public static String getLastname() {
return lastname;
}
public static void setLastname(String lastname) {
userInformation.lastname = lastname;
}
public static double getSalary() {
return salary;
}
public static void setSalary(double salary) {
userInformation.salary = salary;
}
public static int getBranch() {
return branch;
}
public static void setBranch(int branch) {
userInformation.branch = branch;
}
public static String getPassword() {
return password;
}
public static void setPassword(String password) {
userInformation.password = password;
}
public static LocalDate getStart_date() {
return start_date;
}
public static void setStart_date(LocalDate start_date) {
userInformation.start_date = start_date;
}
}