X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/hpcvm.git/blobdiff_plain/a5033b66e150c1f5a03008abb71408b1700337aa..d83793da6e881ebab006a50a47fbba914e65f9cf:/src/and/hpcvm/ServicesServer.java diff --git a/src/and/hpcvm/ServicesServer.java b/src/and/hpcvm/ServicesServer.java index 6eb2f97..60ac97b 100644 --- a/src/and/hpcvm/ServicesServer.java +++ b/src/and/hpcvm/ServicesServer.java @@ -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 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 ; + }