com.inkubator.hrm.dao.impl.UnregEmpReligionDaoImpl.java Source code

Java tutorial

Introduction

Here is the source code for com.inkubator.hrm.dao.impl.UnregEmpReligionDaoImpl.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.inkubator.hrm.dao.impl;

import com.inkubator.datacore.dao.impl.IDAOImpl;
import com.inkubator.hrm.dao.UnregEmpReligionDao;
import com.inkubator.hrm.entity.UnregEmpReligion;
import java.util.List;
import org.hibernate.Criteria;
import org.hibernate.FetchMode;
import org.hibernate.criterion.Restrictions;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Repository;

/**
 *
 * @author deni
 */
@Repository(value = "unregEmpReligionDao")
@Lazy
public class UnregEmpReligionDaoImpl extends IDAOImpl<UnregEmpReligion> implements UnregEmpReligionDao {

    @Override
    public Class<UnregEmpReligion> getEntityClass() {
        return UnregEmpReligion.class;
    }

    @Override
    public List<UnregEmpReligion> getAllDataByUnregSalaryId(Long unregSalaryId) {
        Criteria criteria = getCurrentSession().createCriteria(getEntityClass());
        criteria.createAlias("unregSalary", "us");
        criteria.setFetchMode("religion", FetchMode.JOIN);
        criteria.add(Restrictions.eq("us.id", unregSalaryId));
        return criteria.list();
    }

}