| javax.enterprise.deploy.spi.factories.DeploymentFactory
DeploymentFactory | public interface DeploymentFactory (Code) | | Each application server vendor must provide an implementation of this class in order for the J2EE Deployment API
to work with their product.
The class implementing this interface should have a public no-argument constructor,
and it should be stateless (two instances of the class should always behave the same).
It is suggested but not required that the class have a static initializer that registers an instance
of the class with the DeploymentFactoryManager class.
A connected or disconnected DeploymentManager can be requested. A DeploymentManager that runs connected
to the platform can provide access to J2EE resources. A DeploymentManager that runs disconnected only provides
module deployment configuration support.
author: Adrian Brock version: $Revision: 57196 $ |
getDisplayName | String getDisplayName()(Code) | | The vendor of the deployment manager
the vendor name |
getProductVersion | String getProductVersion()(Code) | | The version of the deployment manager
the version |
handlesURI | boolean handlesURI(String uri)(Code) | | Tests whether the factory can create a manager for the URI
Parameters: uri - the uri true when it can, false otherwise |
|
|