-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathStudent.java
More file actions
41 lines (39 loc) · 1.01 KB
/
Student.java
File metadata and controls
41 lines (39 loc) · 1.01 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
package com.example.lioncode.sec;
public class Student {
private String _email;
private String _password;
private String _clockin;
private String _clockout;
public Student() {
}
public Student(String email, String password, String clockin, String clockout) {
this._email = email;
this._password = password;
this._clockin = clockin;
this._clockout = clockout;
}
public void setEmail(String email) {
this._email = email;
}
public String getEmail() {
return this._email;
}
public void setPassword(String password){
this._password = password;
}
public String getPassword(){
return this._password;
}
public void setClockin(String clockin){
this._clockin = clockin;
}
public String getClockin(){
return this._clockin;
}
public void setClockout(String clockout){
this._clockout = clockout;
}
public String getClockout(){
return this._clockout;
}
}