com.ocare.obook.dao.impl.InsuranceCompanyDaoImpl.java Source code

Java tutorial

Introduction

Here is the source code for com.ocare.obook.dao.impl.InsuranceCompanyDaoImpl.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.ocare.obook.dao.impl;

import com.obird.core.GenericDAO;
import com.ocare.obook.dao.InsuranceCompanyDao;
import com.ocare.obook.domain.InsuranceCompany;
import java.util.List;
import org.hibernate.HibernateException;
import org.hibernate.Query;
import org.hibernate.Session;
import org.springframework.orm.hibernate4.HibernateCallback;
import org.springframework.stereotype.Repository;

/**
 *
 * @author khaledeng
 */
@Repository("insuranceCompanyDao")
public class InsuranceCompanyDaoImpl extends GenericDAO<InsuranceCompany> implements InsuranceCompanyDao {

    {
        super.setClass(InsuranceCompany.class);
    }

    @SuppressWarnings("unchecked")
    @Override
    public List<InsuranceCompany> getAllInsuranceCompanys() {
        return getHibernateTemplate().execute(new HibernateCallback<List<InsuranceCompany>>() {
            @Override
            public List<InsuranceCompany> doInHibernate(Session sn) throws HibernateException {
                Query query = sn.createQuery("from InsuranceCompany where isDeleted = :deleted");
                query.setBoolean("deleted", false);
                return (List<InsuranceCompany>) query.list();
            }
        });
    }

    @SuppressWarnings("unchecked")
    @Override
    public List<InsuranceCompany> getInsurranceCompaniesWithPattern(final String pattern) {
        return getHibernateTemplate().execute(new HibernateCallback<List<InsuranceCompany>>() {
            @Override
            public List<InsuranceCompany> doInHibernate(Session sn) throws HibernateException {
                Query query = sn.createQuery(
                        "from InsuranceCompany i where i.isDeleted = :deleted AND (i.nameEn LIKE :nameEn OR i.nameAr LIKE :nameAr)");
                query.setString("nameAr", "%" + pattern + "%");
                query.setString("nameEn", "%" + pattern + "%");
                query.setBoolean("deleted", false);
                return (List<InsuranceCompany>) query.list();
            }
        });
    }

}