-
Notifications
You must be signed in to change notification settings - Fork 2
/
Subscriber.java
65 lines (53 loc) · 1.31 KB
/
Subscriber.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
61
62
63
64
65
import java.io.Serializable;
import java.util.HashMap;
public class Subscriber implements Serializable
{
private final int id;
private String email;
private HashMap<Integer, Curso> cursos = new HashMap<>();
private HashMap<Integer, String> caixaDeEntrada = new HashMap<>();
private static final long serialVersionUID = 1L;
public Subscriber(int id, String email)
{
this.id = id;
this.email = email;
}
public int getId() {
return id;
}
public HashMap<Integer, String> getCaixaDeEntrada()
{
return this.caixaDeEntrada;
}
public void setEmail(String email) {
this.email = email;
}
public String getEmail() {
return email;
}
public void addCurso(Curso curso)
{
this.cursos.put(curso.getId(), curso);
}
public void removerCurso(int id)
{
this.cursos.remove(id);
}
public HashMap<Integer, Curso> getCursos()
{
return this.cursos;
}
public void addMensagem(int id_curso, String mensagem)
{
this.caixaDeEntrada.put(id_curso, mensagem);
}
public void imprimirCursos()
{
this.cursos.values().toString();
}
@Override
public String toString()
{
return "Id: " + this.id + "\nEmail: " + this.email;
}
}