| org.ow2.easybeans.deployer.IRemoteDeployer
All known Subclasses: org.ow2.easybeans.deployer.RemoteDeployer,
IRemoteDeployer | public interface IRemoteDeployer (Code) | | Interface allowing to deploy some files. This interface will be exposed
through JMX.
author: Florent Benoit |
Method Summary | |
void | deploy(String fileName) Deploy a file to a local deployer. | void | deployFile(String fileName, byte[] fileContent) Dump the given bytes to a local file and then load this file by using a
local deployer. | String | dumpFile(String fileName, byte[] fileContent) Dump the given bytes to a local file and then return the path to this
file. | void | undeploy(String fileName) Undeploy a file by using a local deployer. |
deploy | void deploy(String fileName)(Code) | | Deploy a file to a local deployer.
Parameters: fileName - the name of the file to deploy |
deployFile | void deployFile(String fileName, byte[] fileContent)(Code) | | Dump the given bytes to a local file and then load this file by using a
local deployer.
Parameters: fileName - the name of the file to deploy Parameters: fileContent - the content of the given file |
dumpFile | String dumpFile(String fileName, byte[] fileContent)(Code) | | Dump the given bytes to a local file and then return the path to this
file.
Parameters: fileName - the name of the file to deploy Parameters: fileContent - the content of the given file the path of the deployed file |
undeploy | void undeploy(String fileName)(Code) | | Undeploy a file by using a local deployer.
Parameters: fileName - the name of the file to undeploy |
|
|