Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Correction and modification of save mechanisms.
[hpcvm.git] / src / and / hpcvm / ServicesServer.java
index 6eb2f97..863e393 100644 (file)
@@ -16,11 +16,23 @@ public interface ServicesServer extends Remote
        
        public Integer saveOk( String _ip, String _saveName ) throws RemoteException ;
        
+       public Integer changeSaveName( String _ip, String _saveName ) throws RemoteException ;
+       
        public ArrayList<ServicesClient> startApplication( int _nb ) throws RemoteException ;
        
        public void endApplication() throws RemoteException ;
        
+       public void goApplication() throws RemoteException ;
+       
        public void stop() throws RemoteException ;
+       
+       public void requestSave( String _ip ) throws RemoteException ;
+       
+       public Integer deployVM( String _name, String _archive, String _directory ) throws RemoteException ;
+       
+       public String getWorkingDirectory() throws RemoteException ;
+
+       public void restartOk( String _ip ) throws RemoteException ;
 }