package dao;
// Generated Oct 23, 2017 4:32:37 PM by Hibernate Tools 3.5.0.Final

import java.util.List;
import javax.naming.InitialContext;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hibernate.LockMode;
import org.hibernate.SessionFactory;

import model.Individu;

import static org.hibernate.criterion.Example.create;

/**
 * Home object for domain model class Individu.
 * @see dao.Individu
 * @author Hibernate Tools
 */
public class IndividuHome {

	private static final Log log = LogFactory.getLog(IndividuHome.class);

	private final SessionFactory sessionFactory = getSessionFactory();

	protected SessionFactory getSessionFactory() {
		try {
			return (SessionFactory) new InitialContext().lookup("SessionFactory");
		} catch (Exception e) {
			log.error("Could not locate SessionFactory in JNDI", e);
			throw new IllegalStateException("Could not locate SessionFactory in JNDI");
		}
	}

	public void persist(Individu transientInstance) {
		log.debug("persisting Individu instance");
		try {
			sessionFactory.getCurrentSession().persist(transientInstance);
			log.debug("persist successful");
		} catch (RuntimeException re) {
			log.error("persist failed", re);
			throw re;
		}
	}

	public void attachDirty(Individu instance) {
		log.debug("attaching dirty Individu instance");
		try {
			sessionFactory.getCurrentSession().saveOrUpdate(instance);
			log.debug("attach successful");
		} catch (RuntimeException re) {
			log.error("attach failed", re);
			throw re;
		}
	}

	public void attachClean(Individu instance) {
		log.debug("attaching clean Individu instance");
		try {
			sessionFactory.getCurrentSession().lock(instance, LockMode.NONE);
			log.debug("attach successful");
		} catch (RuntimeException re) {
			log.error("attach failed", re);
			throw re;
		}
	}

	public void delete(Individu persistentInstance) {
		log.debug("deleting Individu instance");
		try {
			sessionFactory.getCurrentSession().delete(persistentInstance);
			log.debug("delete successful");
		} catch (RuntimeException re) {
			log.error("delete failed", re);
			throw re;
		}
	}

	public Individu merge(Individu detachedInstance) {
		log.debug("merging Individu instance");
		try {
			Individu result = (Individu) sessionFactory.getCurrentSession().merge(detachedInstance);
			log.debug("merge successful");
			return result;
		} catch (RuntimeException re) {
			log.error("merge failed", re);
			throw re;
		}
	}

	public Individu findById(java.math.BigDecimal id) {
		log.debug("getting Individu instance with id: " + id);
		try {
			Individu instance = (Individu) sessionFactory.getCurrentSession().get("dao.Individu", id);
			if (instance == null) {
				log.debug("get successful, no instance found");
			} else {
				log.debug("get successful, instance found");
			}
			return instance;
		} catch (RuntimeException re) {
			log.error("get failed", re);
			throw re;
		}
	}

	public List<Individu> findByExample(Individu instance) {
		log.debug("finding Individu instance by example");
		try {
			List<Individu> results = (List<Individu>) sessionFactory.getCurrentSession().createCriteria("dao.Individu")
					.add(create(instance)).list();
			log.debug("find by example successful, result size: " + results.size());
			return results;
		} catch (RuntimeException re) {
			log.error("find by example failed", re);
			throw re;
		}
	}
}
