-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cliente.java
194 lines (190 loc) · 3.72 KB
/
Cliente.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
package sistema_bancario.classes;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Objects;
import java.util.Set;
public class Cliente implements Serializable{
private static final long serialVersionUID = 1L;
private String Nome;
private String Cpf;
private String Senha;
private String Email;
private String Endereco;
private boolean cartao_credito;
private Set <String> Telefones = new HashSet<>();
private List <Conta> Contas= new ArrayList<>();
public Cliente()
{
}
public Cliente(String cpf)
{
this.Cpf=cpf;
}
public Cliente(String Nome, String Cpf, String Senha,String telefones,String Email,String Endereco)
{
this.Nome=Nome;
this.Cpf=Cpf;
this.Senha=Senha;
Telefones.add(telefones);
this.Email=Email;
this.Endereco=Endereco;
this.cartao_credito=false;
}
public String getNome()
{
return Nome;
}
public String getEmail()
{
return Email;
}
public String getCpf()
{
return Cpf;
}
public Set<String> getTelefones()
{
return Telefones;
}
public List<Conta> getContas()
{
return Contas;
}
public String getEndereco()
{
return Endereco;
}
public String getTemCartao()
{
if(this.cartao_credito)
{
return "Cliente possui cartão de crédito";
}
else
{
return "Cliente não possui cartão de crédito";
}
}
private void setCartao() throws Exception
{
if(this.cartao_credito)
{
throw new Exception("Cliente já possui cartão de crédito");
}
else
{
this.cartao_credito=true;
System.out.print("Cartão de crédito contratado com sucesso");
}
}
public void contratarCartao()
{
try
{
setCartao();
}
catch (Exception e)
{
System.out.println(e.getMessage());
}
}
private void setSenha(String senha)
{
this.Senha=senha;
}
public void mudarSenha(String senha)
{
setSenha(senha);
}
@Override
public String toString()
{
return "Cliente: " + getNome() + "\nCpf:" + getCpf() + "\nTelefones: " + getTelefones() + "\nContas: "
+ getContas() + "\nEmail:"+ getEmail()+ "\nEndereço:"+getEndereco()+ "\nCartão de crédito: "+getTemCartao();
}
@Override
public int hashCode()
{
return Objects.hash(Cpf);
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Cliente other = (Cliente) obj;
return Objects.equals(Cpf, other.Cpf);
}
public void inserirConta(Conta conta) throws Exception
{
if(Contas.contains(conta))
{
throw new Exception("Conta já cadastrado");
}
else
{
Contas.add(conta);
}
}
public void removerConta(Conta conta) throws Exception
{
if(Contas.contains(conta))
{
Contas.remove(conta);
}
else
{
throw new Exception("Conta já removida");
}
}
public void inserirTelefone(String tele) throws Exception
{
if(Telefones.contains(tele))
{
throw new Exception("Telefone já cadastrado");
}
else
{
Telefones.add(tele);
}
}
public void removerTelefone(String tele) throws Exception
{
if(Telefones.contains(tele))
{
Telefones.remove(tele);
}
else
{
throw new Exception("Telefone já removido");
}
}
public Conta localizarConta(String numero)
{
Conta temp = new Conta(numero);
if(Contas.contains(temp))
{
int index = Contas.indexOf(temp);
temp = Contas.get(index);
return temp;
}
else
return null;
}
public boolean consultarSenha(String senha)
{
if(this.Senha.equals(senha))
{
return true;
}
else
{
return false;
}
}
}