Package com.jodgi.dao

Source Code of com.jodgi.dao.UserDAOHibernate

package com.jodgi.dao;

import java.util.List;

import org.hibernate.SessionFactory;
import org.springframework.orm.hibernate3.HibernateTemplate;

import com.jodgi.vo.UserVO;

public class UserDAOHibernate implements UserDAO {

  private HibernateTemplate hibernateTemplate;

  public void setSessionFactory(SessionFactory sessionFactory) {
    this.hibernateTemplate = new HibernateTemplate(sessionFactory);
  }

  @SuppressWarnings("unchecked")
  public List<UserVO> getAll() {
    return this.hibernateTemplate.find("from UserVO");
  }
}
TOP

Related Classes of com.jodgi.dao.UserDAOHibernate

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.