| |
|
| java.lang.Object com.sun.jbi.engine.xslt.TransformationEngineSUManager
Method Summary | |
public String | deploy(String serviceUnitID, String serviceUnitRootPath) Initiate a Service Deployment.
Parameters: serviceUnitID - - ID of the Service Unit being deployed Parameters: serviceUnitRootPath - - Full path to the Service Unit root. | public String | getDeploymentInfo(String serviceUnitID) Returns a description of a deployed sub-assembly. | public String[] | getDeployments() Returns a list of all application sub-assemblies (Service Unit's)
currently deployed in to the named component. | public void | init(String serviceUnitID, String serviceUnitRootPath) Initialize the deployment. | public boolean | isDeployed(String serviceUnitID) Returns a boolean value indicating whether the Service Unit is currently
deployed. | public void | setContext(ComponentContext ctx) Sets the ComponentContext object on the TransformationEngineSUManager object. | public void | shutDown(String serviceUnitID) Shut down the deployment. | public void | start(String serviceUnitID) Start the deployment. | public void | stop(String serviceUnitID) Stop the deployment. | public String | undeploy(String serviceUnitID, String serviceUnitRootPath) Cancel a Service Deployment. |
TransformationEngineSUManager | public TransformationEngineSUManager()(Code) | | Creates a new TransformationEngineSUManager object.
|
deploy | public String deploy(String serviceUnitID, String serviceUnitRootPath) throws DeploymentException(Code) | | Initiate a Service Deployment.
Parameters: serviceUnitID - - ID of the Service Unit being deployed Parameters: serviceUnitRootPath - - Full path to the Service Unit root. NOT YET DOCUMENTED throws: DeploymentException - Deployer Exception |
getDeploymentInfo | public String getDeploymentInfo(String serviceUnitID)(Code) | | Returns a description of a deployed sub-assembly.
Parameters: serviceUnitID - - ID of the Service Unit Description for the given Service Unit |
getDeployments | public String[] getDeployments()(Code) | | Returns a list of all application sub-assemblies (Service Unit's)
currently deployed in to the named component. This method is a
convenience wrapper for the same operation in the DeployerMBean.
array of Service Unit ID strings. |
init | public void init(String serviceUnitID, String serviceUnitRootPath) throws DeploymentException(Code) | | Initialize the deployment. This is the first phase of a two-phase start,
where the component must prepare to receive service requests related
to the deployment (if any).
Parameters: serviceUnitID - service unit ID Parameters: serviceUnitRootPath - service unit Root Path throws: DeploymentException - deployement exception |
isDeployed | public boolean isDeployed(String serviceUnitID)(Code) | | Returns a boolean value indicating whether the Service Unit is currently
deployed.
Parameters: serviceUnitID - - Id of the Service Unit boolean value indicating whether the Sercvice Unit is currentlydeployed |
setContext | public void setContext(ComponentContext ctx)(Code) | | Sets the ComponentContext object on the TransformationEngineSUManager object.
Parameters: ctx - ComponentContext object required for Deployment |
shutDown | public void shutDown(String serviceUnitID) throws DeploymentException(Code) | | Shut down the deployment. This causes the deployment to return to the
state it was in after deploy() and before init().
Parameters: serviceUnitID - service unit ID throws: DeploymentException - deployment exception |
start | public void start(String serviceUnitID) throws DeploymentException(Code) | | Start the deployment. This is the second phase of a two-phase start,
where the component can now initiate service requests related to the
deployment.
Parameters: serviceUnitID - service unit ID throws: DeploymentException - deployment exception |
stop | public void stop(String serviceUnitID) throws DeploymentException(Code) | | Stop the deployment. This causes the component to cease generating
service requests related to the deployment. This returns the
deployment to a state equivalent to after init() was called
Parameters: serviceUnitID - service unit ID throws: DeploymentException - deployment exception |
undeploy | public String undeploy(String serviceUnitID, String serviceUnitRootPath) throws DeploymentException(Code) | | Cancel a Service Deployment. If the deployment is in use (has
dependencies), then will operation may fail.
Parameters: serviceUnitID - - ID of the Service Unit being undeployed Parameters: serviceUnitRootPath - - Full path to the Service Unit root. NOT YET DOCUMENTED throws: DeploymentException - deployment exception |
|
|
|