com.sigera.dao.impl.ModuloImp.java Source code

Java tutorial

Introduction

Here is the source code for com.sigera.dao.impl.ModuloImp.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 com.sigera.dao.impl;

import com.sigera.dao.ModuloDao;
import com.sigera.entidad.Modulo;
import com.sigera.exceptions.DataBaseException;
import com.sigera.hibernate.HibernateImpl;
import static com.sigera.hibernate.HibernateImpl.log;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;

/**
 *
 * @author Administrador
 */
@Repository(value = "moduloImp")
public class ModuloImp implements ModuloDao, Serializable {

    @Autowired
    SessionFactory sessionFactory;

    @Override
    public void agregar(Modulo t) {
        Session session = null;
        try {
            session = sessionFactory.getCurrentSession();
            session.save(t);
        } catch (HibernateException e) {
            log.error(String.format("[HibernateImpl/agregar] %s", e.getMessage()), e);
            throw new DataBaseException("Ha existido un error al guardar la informacin");
        } catch (Exception e) {
            log.error(String.format("[HibernateImpl/agregar] %s", e.getMessage()), e);
            throw new DataBaseException("Ha existido un error al guardar la informacin");
        }
    }

    @Override
    public void actualizar(Modulo t) {
        Session session = null;
        try {
            session = sessionFactory.getCurrentSession();
            session.update(t);
        } catch (HibernateException e) {
            log.error(String.format("[HibernateImpl/actualizar] %s", e.getMessage()), e);
            throw new DataBaseException("Ha existido un error al actualizar la informacin");
        } catch (Exception e) {
            log.error(String.format("[HibernateImpl/actualizar] %s", e.getMessage()), e);
            throw new DataBaseException("Ha existido un error al actualizar la informacin");
        }
    }

    @Override
    public void eliminar(Modulo t) {
        Session session = null;
        try {
            session = sessionFactory.getCurrentSession();
            session.delete(t);
        } catch (HibernateException e) {
            log.error(String.format("[HibernateImpl/eliminar] %s", e.getMessage()), e);
            throw new DataBaseException("Ha existido un error al guardar la informacin");
        } catch (Exception e) {
            log.error(String.format("[HibernateImpl/eliminar] %s", e.getMessage()), e);
            throw new DataBaseException("Ha existido un error al guardar la informacin");
        }
    }

    @Override
    public Modulo obtenerEntidad(Integer id) {
        Modulo t = null;
        Session session = null;
        try {
            session = sessionFactory.getCurrentSession();
            t = (Modulo) session.get(Modulo.class, id);
        } catch (HibernateException e) {
            log.error(String.format("[HibernateImpl/obtenerEntidad] %s", e.getMessage()), e);
            throw new DataBaseException("Ha existido un error al guardar la informacin");
        } catch (Exception e) {
            log.error(String.format("[HibernateImpl/obtenerEntidad] %s", e.getMessage()), e);
            throw new DataBaseException("Ha existido un error al guardar la informacin");
        }
        return t;
    }

    @Override
    public List<Modulo> obtenerTodos() {
        List<Modulo> lista = new ArrayList<Modulo>();
        Session session = null;
        try {
            session = sessionFactory.getCurrentSession();
            lista = session.createCriteria(Modulo.class).list();
        } catch (HibernateException e) {
            log.error(String.format("[HibernateImpl/obtenerTodos] %s", e.getMessage()), e);
            throw new DataBaseException("Ha existido un error al guardar la informacin");
        } catch (Exception e) {
            log.error(String.format("[HibernateImpl/obtenerTodos] %s", e.getMessage()), e);
            throw new DataBaseException("Ha existido un error al guardar la informacin");
        }
        return lista;
    }

    @Override
    public List<Modulo> obtenerTodosActivos() {
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    }

    @Override
    public void recargarEntidad(Modulo t) {
        Session session = null;
        session = sessionFactory.getCurrentSession();
        session.refresh(t);
    }

}