Subversion Repositories bacoAlunos

Rev

Rev 75 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package pt.estgp.estgweb.domain.dao.impl;

import pt.estgp.estgweb.domain.User;

import java.util.List;
import java.util.Date;
import java.io.Serializable;

import org.hibernate.HibernateException;
import org.hibernate.criterion.Restrictions;
import jomm.dao.DaoException;

/**
 * @author Jorge Machado
 * @date 28/Fev/2008
 * @time 2:51:06
 * @see pt.estgp.estgweb.domain.dao.impl
 */

public class BlogDaoImpl extends BlogDao
{
    private BlogDaoImpl(){}

    public static BlogDaoImpl getInstance()
    {
        if (myInstance == null)
            myInstance = new BlogDaoImpl();
        return (BlogDaoImpl) myInstance;
    }



}