Postulante.java 2.75 KB
Newer Older
1 2 3 4 5
package com.roshka.proyectofinal;

//Creacion del objeto Postulante
public class Postulante {

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

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


    public Postulante() {
    }

16
    public Postulante(int nroCedula, String nombre, String apellido, String telefono, String direccion, String correo, boolean expLaboral, boolean estudioUniversitario, boolean notebook, int bootcampId, boolean aceptado) {
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
        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;
    }
    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;
    }
41
    public void setNombre(String name) {
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
        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;
    }
86 87 88 89 90 91 92
    public boolean getAceptado(){
        return aceptado;
    }
    public void setAceptado(boolean acepted){
        this.aceptado = acepted;
    }
    public int getBootcampId(){
93 94
        return bootcampId;
    }
95
    public void setBootcampId(int bootcampId){
96 97 98 99
        this.bootcampId = bootcampId;
    }

}