co.com.siscomputo.proveedores.logic.PreguntasEvaluacionLogic.java Source code

Java tutorial

Introduction

Here is the source code for co.com.siscomputo.proveedores.logic.PreguntasEvaluacionLogic.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package co.com.siscomputo.proveedores.logic;

import co.com.siscomputo.administracion.entites.ObjetoRetornaEntity;
import co.com.siscomputo.conexion.HibernateUtil;
import co.com.siscomputo.proveedores.persistencia.PreguntasEvaluacionEntity;
import java.util.ArrayList;
import org.hibernate.HibernateException;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.Transaction;

/**
 *
 * @author Felipe
 */
public class PreguntasEvaluacionLogic implements AutoCloseable {

    private Session sesion;//Variable de la sesin y conexin de la base de datos
    private Transaction tx;//Variable que almacena las consultas y las transacciones de la base de datos

    /**
     * Metodo que establece la conexin a la base de datos, previa validacin de
     * que la sesin no exista o este nula
     *
     * @throws HibernateException
     */
    private String initOperation() {
        String retorno;
        try {
            if (sesion == null) {
                sesion = HibernateUtil.getSessionFactory().openSession();
                tx = sesion.beginTransaction();
            }
            retorno = "Ok";
        } catch (Error e) {
            retorno = "Error Conexin Hibernate " + e;
        }
        return retorno;
    }

    /**
     * Mtodo que trae el siguiente ID de una tabla
     *
     * @return
     */
    private int maxDocumento() {
        int ret = -1;
        try {
            String validaConexion = initOperation();
            if (!"Ok".equalsIgnoreCase(validaConexion)) {

            } else {
                Query query = sesion.createQuery("SELECT MAX(idPregunta) FROM PreguntasEvaluacionEntity");
                ret = (int) query.uniqueResult();
                ret++;
            }
        } catch (Exception e) {
            ret = 1;
        }
        return ret;
    }

    /**
     * Mtodo que inserta una pregunta nueva
     *
     * @param objetoPre
     * @return
     */
    public PreguntasEvaluacionEntity insertarPregunta(PreguntasEvaluacionEntity objetoPre) {
        try {
            String conexion = initOperation();
            if ("OK".equalsIgnoreCase(conexion)) {
                objetoPre.setIdPregunta(maxDocumento());
                sesion.save(objetoPre);
                tx.commit();
                objetoPre.setNumeroRespuesta(23);
                objetoPre.setTrazaRespuesta("Insercion exitosa");
            } else {
                objetoPre = new PreguntasEvaluacionEntity();
                objetoPre.setNumeroRespuesta(0);
                objetoPre.setTrazaRespuesta("Error de conexion " + conexion);
            }

        } catch (Exception e) {
            e.printStackTrace();
            objetoPre = new PreguntasEvaluacionEntity();
            objetoPre.setIdPregunta(0);
            objetoPre.setTrazaRespuesta(e.getMessage());
        }

        return objetoPre;
    }

    /**
     * Metodo para actualizar una pregunta
     *
     * @param objPre
     * @return
     */
    public PreguntasEvaluacionEntity actualizarPreguntaEvaluacion(PreguntasEvaluacionEntity objPre) {
        try {
            String conexion = initOperation();
            if ("OK".equalsIgnoreCase(conexion)) {
                sesion.update(objPre);
                tx.commit();
                objPre.setNumeroRespuesta(23);
                objPre.setTrazaRespuesta("Actualizacion correcta");
            } else {
                objPre = new PreguntasEvaluacionEntity();
                objPre.setNumeroRespuesta(0);
                objPre.setTrazaRespuesta("Error de conexion" + conexion);
            }

        } catch (Exception e) {
            e.printStackTrace();
            objPre = new PreguntasEvaluacionEntity();
            objPre.setNumeroRespuesta(0);
            objPre.setTrazaRespuesta(e.getMessage());

        }
        return objPre;
    }

    /**
     * Metodo para listar preguntas
     *
     * @return
     */
    public ObjetoRetornaEntity listarPreguntas() {
        ObjetoRetornaEntity obj = new ObjetoRetornaEntity();
        try {
            String conexion = initOperation();
            if ("OK".equalsIgnoreCase(conexion)) {
                Query sentencia = sesion.createQuery("FROM PreguntasEvaluacionEntity");
                obj.setNumeroRespuesta(23);
                obj.setRetorna((ArrayList<Object>) sentencia.list());
                obj.setTrazaRespuesta("Consulta exitosa");
            } else {
                obj.setNumeroRespuesta(0);
                obj.setTrazaRespuesta("Error de conexion " + conexion);
            }

        } catch (Exception e) {
            e.printStackTrace();
            obj = new ObjetoRetornaEntity();
            obj.setNumeroRespuesta(0);
            obj.setTrazaRespuesta(e.getMessage());

        }
        return obj;
    }

    @Override
    public void close() throws Exception {
        try {
            if (tx != null) {
                tx.commit();
            }
            if (sesion != null) {
                sesion.close();
                sesion = null;
            }

        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}