/*
* $Id: IWBundleStarter.java,v 1.6 2008/11/26 12:12:16 valdas Exp $
* Created on Sep 24, 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.process;
import com.idega.idegaweb.IWBundle;
import com.idega.idegaweb.IWBundleStartable;
/**
* Last modified: $Date: 2008/11/26 12:12:16 $ by $Author: valdas $
*
* @author <a href="mailto:laddi@idega.com">laddi</a>
* @version $Revision: 1.6 $
*/
public class IWBundleStarter implements IWBundleStartable {
public static final String IW_BUNDLE_IDENTIFIER = "com.idega.block.process";
/* (non-Javadoc)
* @see com.idega.idegaweb.IWBundleStartable#start(com.idega.idegaweb.IWBundle)
*/
public void start(IWBundle starterBundle) {
}
/* (non-Javadoc)
* @see com.idega.idegaweb.IWBundleStartable#stop(com.idega.idegaweb.IWBundle)
*/
public void stop(IWBundle starterBundle) {
}
}