LoginBean.java 604 Bytes
Newer Older
Emanuel Lugo committed
1 2 3 4 5
package com.roshka.proyectofinal.entity;

public class LoginBean {
    private String username;
    private String password;
6
    private String correo;
Emanuel Lugo committed
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22

    public String getUsername() {
        return username;
    }

    public String getPassword() {
        return password;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public void setPassword(String password) {
        this.password = password;
    }
23 24 25 26 27 28 29 30

    public void setCorreo(String correo) {
        this.correo = correo;
    }

    public String getCorreo() {
        return correo;
    }
Emanuel Lugo committed
31
}