/* * $Id: CreditCardBusinessHomeImpl.java,v 1.3 2005/08/27 15:28:43 gimmi Exp $ * Created on Aug 27, 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 com.idega.block.creditcard.business; import com.idega.business.IBOHomeImpl; /** * * Last modified: $Date: 2005/08/27 15:28:43 $ by $Author: gimmi $ * * @author <a href="mailto:gimmi@idega.com">gimmi</a> * @version $Revision: 1.3 $ */ public class CreditCardBusinessHomeImpl extends IBOHomeImpl implements CreditCardBusinessHome { protected Class getBeanInterfaceClass() { return CreditCardBusiness.class; } public CreditCardBusiness create() throws javax.ejb.CreateException { return (CreditCardBusiness) super.createIBO(); } }