1 /* $Id: CNComponentLifecycleControlInterface.java,v 1.2 2004/05/20 14:23:50 bures Exp $ */2 package SOFA.Connector.Boot;3 4 import SOFA.Component.ComponentLifecycleException;5 import SOFA.SOFAnode.Run.Storage;6 7 public interface CNComponentLifecycleControlInterface {8 9 void createComponent(Storage stateStore) throws ComponentLifecycleException;10 void destroyComponent(Storage stateStore) throws ComponentLifecycleException;11 void storeComponent(Storage stateStore) throws ComponentLifecycleException;12 void restoreComponent(Storage stateStore) throws ComponentLifecycleException;13 }14