-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusariosget.java
More file actions
76 lines (58 loc) · 1.58 KB
/
usariosget.java
File metadata and controls
76 lines (58 loc) · 1.58 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
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
package workfinal;
/**
*
* @author Kenshin
*/
public class usariosget {
//Atributos del usuario.
private int idusuario;
private String usuario;
private String nombre;
private String apellido;
private String telefono;
private String correo_electronico;
private String contrasena;
//Métodos GET/SET para poder acceder/cambiar los atributos del usuario.
public int getIdusuario() {
return idusuario;
}
public void setIdusuario(int idusuario) {
this.idusuario = idusuario;
}
public String getUsuario() {
return usuario;
}
public void setUsuario(String usuario) {
this.usuario = usuario;
}
public String getNombre() {
return nombre;
}
public void setNombre(String nombre) {
this.nombre = nombre;
}
public String getApellido() {
return apellido;
}
public void setApellido(String apellido) {
this.apellido = apellido;
}
public String getTelefono() {
return telefono;
}
public void setTelefono(String telefono) {
this.telefono = telefono;
}
public String getCorreo_electronico() {
return correo_electronico;
}
public void setCorreo_electronico(String correo_electronico) {
this.correo_electronico = correo_electronico;
}
public String getContrasena() {
return contrasena;
}
public void setContrasena(String contrasena) {
this.contrasena = contrasena;
}
}