/* * $Id: AfterSchoolCareDaysHomeImpl.java,v 1.2 2005/10/14 06:54:24 laddi Exp $ * Created on Oct 14, 2005 * * Copyright (C) 2005 Idega Software hf. All Rights Reserved. * * This software is the proprietary information of Idega hf. * Use is subject to license terms. */ package se.idega.idegaweb.commune.childcare.data; import java.util.Collection; import javax.ejb.FinderException; import se.idega.idegaweb.commune.care.data.ChildCareApplication; import com.idega.data.IDOFactory; /** * Last modified: $Date: 2005/10/14 06:54:24 $ by $Author: laddi $ * * @author <a href="mailto:laddi@idega.com">laddi</a> * @version $Revision: 1.2 $ */ public class AfterSchoolCareDaysHomeImpl extends IDOFactory implements AfterSchoolCareDaysHome { protected Class getEntityInterfaceClass() { return AfterSchoolCareDays.class; } public AfterSchoolCareDays create() throws javax.ejb.CreateException { return (AfterSchoolCareDays) super.createIDO(); } public AfterSchoolCareDays findByPrimaryKey(Object pk) throws javax.ejb.FinderException { return (AfterSchoolCareDays) super.findByPrimaryKeyIDO(pk); } public Collection findAllByApplication(ChildCareApplication application) throws FinderException { com.idega.data.IDOEntity entity = this.idoCheckOutPooledEntity(); java.util.Collection ids = ((AfterSchoolCareDaysBMPBean) entity).ejbFindAllByApplication(application); this.idoCheckInPooledEntity(entity); return this.getEntityCollectionForPrimaryKeys(ids); } public AfterSchoolCareDays findByApplicationAndDayOfWeek(ChildCareApplication application, int dayOfWeek) throws FinderException { com.idega.data.IDOEntity entity = this.idoCheckOutPooledEntity(); Object pk = ((AfterSchoolCareDaysBMPBean) entity).ejbFindByApplicationAndDayOfWeek(application, dayOfWeek); this.idoCheckInPooledEntity(entity); return this.findByPrimaryKey(pk); } }