Experiencia.java 3.66 KB
Newer Older
1 2
package com.roshka.modelo;

3 4 5
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
6
import java.util.List;
7 8 9 10 11

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
12 13 14 15

import com.fasterxml.jackson.annotation.JsonBackReference;
import com.fasterxml.jackson.annotation.JsonManagedReference;

16 17 18 19
import javax.persistence.*;

@Entity
@Table(name = "experiencia")
20
public class Experiencia {
21 22 23 24 25 26 27 28 29
    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    private long id;
    @Column(name = "institucion")
    private String institucion;
    @Column(name = "fecha_desde")
    private Date fechaDesde;
    @Column(name = "fecha_hasta")
    private Date fechaHasta;
30 31 32 33
    @Column(name = "nombre_referencia")
    private String nombreReferencia;
    @Column(name = "telefono_referencia")
    private String telefonoReferencia;
34 35
    @Column(name = "cargo")
    private String cargo;
36 37 38 39
    @Column(name = "descripcion")
    private String descripcion;
    @JsonBackReference
    @ManyToOne(optional = false)
40 41
    @JoinColumn
    private Postulante postulante;
42

43 44 45 46
    @JsonManagedReference
    @OneToMany(mappedBy = "experiencia",cascade = CascadeType.ALL)
    private List<ExperienciaReconocimiento> reconocimientos;

47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
    public long getId() {
        return id;
    }
    public void setId(long id) {
        this.id = id;
    }
    public String getInstitucion() {
        return institucion;
    }
    public void setInstitucion(String institucion) {
        this.institucion = institucion;
    }
    public Date getFechaDesde() {
        return fechaDesde;
    }
    public void setFechaDesde(Date fechaDesde) {
        this.fechaDesde = fechaDesde;
    }
65 66 67 68 69 70 71 72 73 74
    public void setFechaDesde(String fechaDesde) {
        if(fechaDesde==null || fechaDesde.isEmpty()) return;

        try {
            this.fechaDesde = new SimpleDateFormat("yyyy-mm-dd").parse(fechaDesde);
        } catch (ParseException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
75 76 77 78 79 80
    public Date getFechaHasta() {
        return fechaHasta;
    }
    public void setFechaHasta(Date fechaHasta) {
        this.fechaHasta = fechaHasta;
    }
81 82 83 84 85 86 87 88 89 90
    public void setFechaHasta(String fechaHasta) {
        if(fechaHasta==null || fechaHasta.isEmpty()) return;

        try {
            this.fechaHasta = new SimpleDateFormat("yyyy-mm-dd").parse(fechaHasta);
        } catch (ParseException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
91 92
    public String getNombreReferencia() {
        return nombreReferencia;
93
    }
94 95 96 97 98 99 100 101
    public String getTelefonoReferencia() {
        return telefonoReferencia;
    }
    public void setNombreReferencia(String nombreReferencia) {
        this.nombreReferencia = nombreReferencia;
    }
    public void setTelefonoReferencia(String telefonoReferencia) {
        this.telefonoReferencia = telefonoReferencia;
102 103 104 105 106 107 108
    }
    public String getCargo() {
        return cargo;
    }
    public void setCargo(String cargo) {
        this.cargo = cargo;
    }
109 110 111 112 113 114
    public void setPostulante(Postulante postulante) {
        this.postulante = postulante;
    }
    public Postulante getPostulante() {
        return postulante;
    }
115 116 117 118 119 120 121 122 123 124 125 126
    public String getDescripcion() {
        return descripcion;
    }
    public void setDescripcion(String descripcion) {
        this.descripcion = descripcion;
    }
    public void setReconocimientos(List<ExperienciaReconocimiento> reconocimientos) {
        this.reconocimientos = reconocimientos;
    }
    public List<ExperienciaReconocimiento> getReconocimientos() {
        return reconocimientos;
    }
127
}