Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Refunding the restart/redeployment mechanisms.
[hpcvm.git] / src / and / hpcvm / ServicesServer.java
index 6eb2f97..60ac97b 100644 (file)
@@ -16,11 +16,18 @@ 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 stop() throws RemoteException ;
+       
+       public Integer deployVM( String _name, String _archive, String _directory ) throws RemoteException ;
+       
+       public String getWorkingDirectory() throws RemoteException ;
+
 }