/* * $Id: ChildCareBusinessHomeImpl.java 1.1 Mar 30, 2006 laddi Exp $ * Created on Mar 30, 2006 * * Copyright (C) 2006 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.business; import com.idega.business.IBOHomeImpl; /** * <p> * TODO laddi Describe Type ChildCareBusinessHomeImpl * </p> * Last modified: $Date: 2004/06/28 09:09:50 $ by $Author: laddi $ * * @author <a href="mailto:laddi@idega.com">laddi</a> * @version $Revision: 1.1 $ */ public class ChildCareBusinessHomeImpl extends IBOHomeImpl implements ChildCareBusinessHome { protected Class getBeanInterfaceClass() { return ChildCareBusiness.class; } public ChildCareBusiness create() throws javax.ejb.CreateException { return (ChildCareBusiness) super.createIBO(); } }