public interface ApplicationTransferService
| Modifier and Type | Method and Description |
|---|---|
List<Application> |
getApplications(SystemInformation system)
Get list of applications from a team member.
|
InputStream |
getArchive(SystemInformation system,
String appId)
Get an application archive file from a team member.
|
void |
install(String appId)
Install an uploaded application on a team member given the id.
|
void |
redeploy(String appId)
Re-deploy an existing application in a team.
|
void |
start(String appId)
Start an application on a team member given the id.
|
void |
stop(String appId)
Start an application on a team member given the id.
|
void |
uninstall(String appId)
Un-install an application on a team member given the id.
|
void |
upload(File appArchive,
String filename)
Upload an application archive to a team member.
|
List<Application> getApplications(SystemInformation system)
system - system SystemInformation from which applications
list will be gotInputStream getArchive(SystemInformation system, String appId) throws IOException
system - system to get the applications fromappId - the application idIOException - if errors occur while transferring the filevoid upload(File appArchive, String filename)
appArchive - the File to synchronize uploadfilename - name of the application archivevoid install(String appId)
appId - unique id of the applicationvoid uninstall(String appId)
appId - unique id of the applicationvoid start(String appId)
appId - unique id of the applicationvoid stop(String appId)
appId - unique id of the applicationvoid redeploy(String appId)
appId - unique id of the applicationCopyright © 2014. All Rights Reserved.