forked from Eliiss/ProyectoFinal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TarjetaCredito.java
59 lines (39 loc) · 1.41 KB
/
TarjetaCredito.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
package com.mycompany.javaeat;
import java.time.LocalDate;
public class TarjetaCredito {
private String titular;
private String numero;
private LocalDate fechaCaducidad;
public TarjetaCredito(String titular, String numero, LocalDate fechaCaducidad){
if (titular == null || titular.isEmpty()) {
throw new IllegalArgumentException("Debe introducir el nombre del titular");
}
if (numero.length()!= 16) {
throw new IllegalArgumentException("Número de tarjeta inválido");
}
if (fechaCaducidad.isBefore(LocalDate.now())) {
throw new IllegalArgumentException("Fecha de caducidad inválida.");
}
this.titular = titular;
this.numero = numero;
this.fechaCaducidad = fechaCaducidad;
}
public String getTitular() {
return titular;
}
public void setTitular(String titular) {
this.titular = titular;
}
public String getNumero() {
return numero;
}
public void setNumero(String numero) {
this.numero = numero;
}
public LocalDate getFechaCaducidad() {
return fechaCaducidad;
}
public void setFechaCaducidad(LocalDate fechaCaducidad) {
this.fechaCaducidad = fechaCaducidad;
}
}