-
Notifications
You must be signed in to change notification settings - Fork 295
/
Copy pathStudent.java
42 lines (34 loc) · 981 Bytes
/
Student.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
package nextstep.courses.domain;
import java.util.Objects;
public class Student {
private Long id;
private final Long sessionId;
private final Long studentId;
public Student(Long sessionId, Long studentId) {
this(null, sessionId, studentId);
}
public Student(Long id, Long sessionId, Long studentId) {
this.id = id;
this.sessionId = sessionId;
this.studentId = studentId;
}
public Long getSessionId() {
return sessionId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Student student = (Student) o;
return Objects.equals(sessionId, student.sessionId)
&& Objects.equals(studentId, student.studentId);
}
@Override
public int hashCode() {
return Objects.hash(sessionId, studentId);
}
}