/** * Copyright (C) 2008-2010, Squale Project - http://www.squale.org * * This file is part of Squale. * * Squale is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation, either version 3 of the * License, or any later version. * * Squale is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Squale. If not, see <http://www.gnu.org/licenses/>. */ package org.squale.squalecommon.daolayer.config.web; import java.util.Collection; import org.squale.jraf.commons.exception.JrafDaoException; import org.squale.jraf.provider.persistence.hibernate.AbstractDAOImpl; import org.squale.jraf.spi.persistence.ISession; import org.squale.squalecommon.enterpriselayer.businessobject.config.web.HomepageComponentBO; /** * DAO for the component HomepageComponentBO * */ public final class HomepageComponentDAOImpl extends AbstractDAOImpl { /** * Singleton */ private static HomepageComponentDAOImpl instance; /** Initialization of singleton */ static { instance = new HomepageComponentDAOImpl(); } /** * Private constructor * * @throws JrafDaoException */ private HomepageComponentDAOImpl() { initialize( HomepageComponentBO.class ); } /** * Return the singleton of the DAO * * @return the singleton of the DAO */ public static HomepageComponentDAOImpl getInstance() { return instance; } /** * This method recover the list of HomepageComponent linked to the user id give in parameter * * @param session The hibernate session * @param userId Id of the user * @return The list of component * @throws JrafDaoException Exception during the serach in the database */ public Collection findByUserId( ISession session, long userId ) throws JrafDaoException { StringBuffer whereClause = new StringBuffer( "where " ); whereClause.append( getAlias() ); whereClause.append( ".user.id = ' " ); whereClause.append( userId ); whereClause.append( " '" ); Collection ret = findWhere( session, whereClause.toString() ); return ret; } }