| com.rift.coad.daemon.deployment.DeploymentDaemon
All known Subclasses: com.rift.coad.daemon.deployment.DeploymentDaemonImpl,
DeploymentDaemon | public interface DeploymentDaemon extends Remote(Code) | | This Daemon allows users to remotely upload either Daemons or any other file
to the Coadunation server.
author: Glynn Chaldecott |
Method Summary | |
public void | copyFile(byte[] file, String name, String location) This method is used when a user needs to remotely upload a file to the
Coadunation server.
Parameters: file - This is a byte[] containing the contents of the file. Parameters: name - This is the name of the file. Parameters: location - This is the location that the file will be stored. | public void | daemonDeployer(byte[] file, String name) This method is used when a user wishes to remotely deploy a Daemon to
Coadunation.
Parameters: file - This is a byte[] containing the contents of the jar file. Parameters: name - This is the name of the Daemon. |
copyFile | public void copyFile(byte[] file, String name, String location) throws RemoteException(Code) | | This method is used when a user needs to remotely upload a file to the
Coadunation server.
Parameters: file - This is a byte[] containing the contents of the file. Parameters: name - This is the name of the file. Parameters: location - This is the location that the file will be stored. Pleasenote the for a windows installation the name will have to include the extension. |
daemonDeployer | public void daemonDeployer(byte[] file, String name) throws RemoteException, DeploymentDaemonException(Code) | | This method is used when a user wishes to remotely deploy a Daemon to
Coadunation.
Parameters: file - This is a byte[] containing the contents of the jar file. Parameters: name - This is the name of the Daemon. Please note that for a windows installation it will require that the extension be included in the name. |
|
|