Skip to content
Snippets Groups Projects
Commit 281b3a54 authored by Shanshan Jiang's avatar Shanshan Jiang
Browse files

update according to Roni's comments

parent 897b2db5
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,7 @@ public interface IDeployManager { ...@@ -22,7 +22,7 @@ public interface IDeployManager {
* @param sessionKey: the sessionKey for the interaction obtained when uCC registers with uStore * @param sessionKey: the sessionKey for the interaction obtained when uCC registers with uStore
* @param usrvfile: the link to download the .usrv file, serviceId from uStore is provided in .usrv file. * @param usrvfile: the link to download the .usrv file, serviceId from uStore is provided in .usrv file.
*/ */
public void update(String username, String password, URL usrvfile); public void update(String sessionKey, URL usrvfile);
/** /**
* uninstall a service * uninstall a service
...@@ -35,9 +35,9 @@ public interface IDeployManager { ...@@ -35,9 +35,9 @@ public interface IDeployManager {
/** /**
* get all installed services * get all installed services
* @param sessionKey: the sessionKey for the interaction obtained when uCC registers with uStore * @param sessionKey: the sessionKey for the interaction obtained when uCC registers with uStore
* @return Map<serviceId, serviceVersion>: the list of services with uStore service Id (and its version?) * @return List<serviceId>: list of uStore service Ids
*/ */
public Map<String, String> getInstalledServices(String sessionKey); public List<String> getInstalledServices(String sessionKey);
/** /**
* get the installed application units for a service * get the installed application units for a service
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment