Postulante.java 4.16 KB
Newer Older
1 2
package com.roshka.proyectofinal.entity;

3 4 5 6

//Creacion del objeto Postulante
public class Postulante {

7
    private int id,nroCedula,bootcampId;
8
    private String nombreBootcamp;
9
    private String nombre,apellido,telefono,direccion,correo;
10
    private boolean   expLaboral,estudioUniversitario,notebook,aceptado;
11 12 13 14 15 16 17

    //Los parametros que reciban los metodos get estaran en ingles con camelCase para evitar confusiones


    public Postulante() {
    }

18
    public Postulante(int nroCedula, String nombre, String apellido, String telefono, String direccion, String correo, boolean expLaboral, boolean estudioUniversitario, boolean notebook, int bootcampId, boolean aceptado) {
19 20 21 22 23 24 25 26 27 28 29 30
        this.nroCedula = nroCedula;
        this.nombre = nombre;
        this.apellido = apellido;
        this.telefono = telefono;
        this.direccion = direccion;
        this.correo = correo;
        this.expLaboral = expLaboral;
        this.estudioUniversitario = estudioUniversitario;
        this.notebook = notebook;
        this.bootcampId = bootcampId;
        this.aceptado = aceptado;
    }
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46

    public Postulante(int nroCedula, String nombreBootcam, String nombre, String apellido, String telefono, String direccion, String correo, boolean expLaboral, boolean estudioUniversitario, boolean notebook, int bootcampId, boolean aceptado) {
        this.nroCedula = nroCedula;
        this.nombreBootcamp = nombreBootcam;
        this.nombre = nombre;
        this.apellido = apellido;
        this.telefono = telefono;
        this.direccion = direccion;
        this.correo = correo;
        this.expLaboral = expLaboral;
        this.estudioUniversitario = estudioUniversitario;
        this.notebook = notebook;
        this.bootcampId = bootcampId;
        this.aceptado = aceptado;
    }

47 48 49 50 51 52 53 54 55 56 57 58
    public int getId() {
        return id;
    }
    public int getNro_cedula() {
        return nroCedula;
    }
    public void setNro_cedula(int card_id) {
        this.nroCedula = card_id;
    }
    public String getNombre() {
        return nombre;
    }
59
    public void setNombre(String name) {
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
        this.nombre = name;
    }
    public String getApellido() {
        return apellido;
    }
    public void setApellido(String lastName) {
        this.apellido = lastName;
    }
    public String getTelefono() {
        return telefono;
    }
    public void setTelefono(String telephone) {
        this.telefono = telephone;
    }
    public String getDireccion() {
        return direccion;
    }
    public void setDireccion(String addres) {
        this.direccion = addres;
    }
    public String getCorreo() {
        return correo;
    }
    public void setCorreo(String email) {
        this.correo = email;
    }
    public boolean getExpLaboral(){
        return expLaboral;
    }
    public void setExpLaboral(boolean laboralExperience){
        this.expLaboral = laboralExperience;
    }
    public boolean getEstudioUniversitario(){
        return estudioUniversitario;
    }
    public void setEstudioUniversitario(boolean university){
        this.estudioUniversitario = university;
    }
    public boolean getNotebook(){
        return notebook;
    }
    public void setNotebook(boolean notebook){
        this.notebook = notebook;
    }
104 105 106 107 108 109 110
    public boolean getAceptado(){
        return aceptado;
    }
    public void setAceptado(boolean acepted){
        this.aceptado = acepted;
    }
    public int getBootcampId(){
111 112
        return bootcampId;
    }
113
    public void setBootcampId(int bootcampId){
114 115 116
        this.bootcampId = bootcampId;
    }

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
    public void setId(int id) {
        this.id = id;
    }

    public int getNroCedula() {
        return nroCedula;
    }

    public void setNroCedula(int nroCedula) {
        this.nroCedula = nroCedula;
    }

    public String getNombreBootcamp() {
        return nombreBootcamp;
    }

    public void setNombreBootcamp(String nombreBootcamp) {
        this.nombreBootcamp = nombreBootcamp;
    }

    public boolean isExpLaboral() {
        return expLaboral;
    }

    public boolean isEstudioUniversitario() {
        return estudioUniversitario;
    }

    public boolean isNotebook() {
        return notebook;
    }

    public boolean isAceptado() {
        return aceptado;
    }
152
}