1 2 package SOFA.Connector.Boot; 3 4 import java.rmi.Remote ; 5 import java.rmi.RemoteException ; 6 7 import SOFA.Component.ComponentLifecycleException; 8 import SOFA.SOFAnode.Run.Storage; 9 10 public interface CNComponentLifecycleControlRemoteInterface extends Remote { 11 12 void createComponent(Storage stateStore) throws ComponentLifecycleException, RemoteException ; 13 void destroyComponent(Storage stateStore) throws ComponentLifecycleException, RemoteException ; 14 void storeComponent(Storage stateStore) throws ComponentLifecycleException, RemoteException ; 15 void restoreComponent(Storage stateStore) throws ComponentLifecycleException, RemoteException ; 16 } 17 | Popular Tags |