Subversion Repositories bacoAlunos

Rev

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 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 UrlStatDaoImpl extends UrlStatDao
{
    public static UrlStatDaoImpl getInstance()
    {
        if (myInstance == null)
            myInstance = new UrlStatDaoImpl();
        return (UrlStatDaoImpl) myInstance;
    }
}