package se.idega.idegaweb.commune.accounting; import se.idega.idegaweb.commune.accounting.invoice.business.InvoiceBusinessBean; import se.idega.idegaweb.commune.care.business.CareInvoiceBusiness; import com.idega.business.IBOLookup; import com.idega.idegaweb.IWBundle; import com.idega.idegaweb.IWBundleStartable; /** * <p>Title: idegaWeb</p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2003</p> * <p>Company: idega Software</p> * @author <a href="thomas@idega.is">Thomas Hilbig</a> * @version 1.0 * Created on Jun 10, 2004 */ public class IWBundleStarter implements IWBundleStartable { public void start(IWBundle starterBundle) { IBOLookup.registerImplementationForBean(CareInvoiceBusiness.class, InvoiceBusinessBean.class); } public void stop(IWBundle starterBundle) { // nothing to do } }