FileDocCategorySizeDatePackage
DeploymentConfigurationImpl.javaAPI DocJBoss 4.2.14561Fri Jul 13 20:52:34 BST 2007org.jboss.deployment.spi

DeploymentConfigurationImpl

public class DeploymentConfigurationImpl extends Object implements javax.enterprise.deploy.spi.DeploymentConfiguration
An interface that defines a container for all the server-specific configuration information for a single top-level J2EE module. The DeploymentConfiguration object could represent a single stand alone module or an EAR file that contains several sub-modules.
author
thomas.diesler@jboss.org
version
$Revision: 57190 $

Fields Summary
Constructors Summary
Methods Summary
public javax.enterprise.deploy.spi.DConfigBeanRootgetDConfigBeanRoot(javax.enterprise.deploy.model.DDBeanRoot bean)
Return the top level configuration for a deployment descriptor

param
bean the root of the deployment descriptor
return
the configuration
throws
javax.enterprise.deploy.spi.exceptions.ConfigurationException for an error in the deployment descriptor

      return null; //[todo] implement method
   
public javax.enterprise.deploy.model.DeployableObjectgetDeployableObject()
Return an object that provides access to the deployment descriptor

return
the deployable object

      return null; //[todo] implement method
   
public voidremoveDConfigBean(javax.enterprise.deploy.spi.DConfigBeanRoot bean)
Remove a root configuration and all its children

param
bean the configuration
throws
javax.enterprise.deploy.spi.exceptions.BeanNotFoundException when the bean is not found

      //[todo] implement method
   
public voidrestore(java.io.InputStream input)
Restores a full set of configuration beans

param
input the input stream
throws
javax.enterprise.deploy.spi.exceptions.ConfigurationException for an error in the configuration

      //[todo] implement method
   
public javax.enterprise.deploy.spi.DConfigBeanRootrestoreDConfigBean(java.io.InputStream input, javax.enterprise.deploy.model.DDBeanRoot bean)
Restore a configuration from an input stream

param
input the input stream
param
bean the deployment descriptor
return
the configuration
throws
javax.enterprise.deploy.spi.exceptions.ConfigurationException when there is an error in the configuration

      return null; //[todo] implement method
   
public voidsave(java.io.OutputStream output)
Saves the fulls set of configuration beans

param
output the output stream
throws
javax.enterprise.deploy.spi.exceptions.ConfigurationException for an error in the configuration

      //[todo] implement method
   
public voidsaveDConfigBean(java.io.OutputStream output, javax.enterprise.deploy.spi.DConfigBeanRoot bean)
Save a configuration to an output stream

param
output the output stream
param
bean the configuration
throws
javax.enterprise.deploy.spi.exceptions.ConfigurationException when there is an error in the configuration

      //[todo] implement method