Package org.jboss.jca.deployers.common
Class CommonDeployment
- java.lang.Object
-
- org.jboss.jca.deployers.common.CommonDeployment
-
public class CommonDeployment extends Object
A CommonDeployment.- Author:
- Stefano Maestri, Jesper Pedersen
-
-
Constructor Summary
Constructors Constructor Description CommonDeployment(URL url, String deploymentName, boolean activateDeployment, javax.resource.spi.ResourceAdapter resourceAdapter, String resourceAdapterKey, String bootstrapContextIdentifier, Object[] cfs, String[] cfJndiNames, ConnectionManager[] cfCM, Object[] aos, String[] aoJndiNames, XAResourceRecovery[] recoveryModules, Connector connector, DataSource[] dataSources, ClassLoader cl, DeployersLogger log)Create a new Deployment.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String[]getAoJndiNames()Get the admin object JNDI names.Object[]getAos()Get the aos.StringgetBootstrapContextIdentifier()Get the bootstrap context identifierString[]getCfJndiNames()Get the connection factory JNDI names.Object[]getCfs()Get the cfs.ClassLoadergetCl()Get the cl.ConnectionManager[]getConnectionManagers()Get the connection managers.ConnectorgetConnector()Get the management view of the connectorDataSource[]getDataSources()Get the management view of the datasourcesStringgetDeploymentName()Get the deploymentName.DeployersLoggergetLog()Get the log.XAResourceRecovery[]getRecovery()Get the recovery modules.javax.resource.spi.ResourceAdaptergetResourceAdapter()Get the resourceAdapter.StringgetResourceAdapterKey()Get the resource adapter keyURLgetURL()Get the url.booleanisActivateDeployment()Get the activateDeployment.
-
-
-
Constructor Detail
-
CommonDeployment
public CommonDeployment(URL url, String deploymentName, boolean activateDeployment, javax.resource.spi.ResourceAdapter resourceAdapter, String resourceAdapterKey, String bootstrapContextIdentifier, Object[] cfs, String[] cfJndiNames, ConnectionManager[] cfCM, Object[] aos, String[] aoJndiNames, XAResourceRecovery[] recoveryModules, Connector connector, DataSource[] dataSources, ClassLoader cl, DeployersLogger log)
Create a new Deployment.- Parameters:
url- urldeploymentName- deploymentNameactivateDeployment- activateDeploymentresourceAdapter- resourceAdapterresourceAdapterKey- resourceAdapter keybootstrapContextIdentifier- The bootstrap context identifiercfs- The connection factoriescfJndiNames- The JNDI names for the connection factoriescfCM- The connection managersaos- The admin objectsaoJndiNames- The JNDI names for the admin objectsrecoveryModules- The recovery modulesconnector- The management view of a connectordataSources- The management view of datasourcescl- cllog- log
-
-
Method Detail
-
getURL
public final URL getURL()
Get the url.- Returns:
- the url.
-
getDeploymentName
public final String getDeploymentName()
Get the deploymentName.- Returns:
- the deploymentName.
-
isActivateDeployment
public final boolean isActivateDeployment()
Get the activateDeployment.- Returns:
- the activateDeployment.
-
getResourceAdapter
public final javax.resource.spi.ResourceAdapter getResourceAdapter()
Get the resourceAdapter.- Returns:
- the resourceAdapter.
-
getResourceAdapterKey
public final String getResourceAdapterKey()
Get the resource adapter key- Returns:
- The value
-
getBootstrapContextIdentifier
public final String getBootstrapContextIdentifier()
Get the bootstrap context identifier- Returns:
- The value
-
getCfs
public final Object[] getCfs()
Get the cfs.- Returns:
- the cfs.
-
getCfJndiNames
public final String[] getCfJndiNames()
Get the connection factory JNDI names.- Returns:
- the jndiNames.
-
getConnectionManagers
public final ConnectionManager[] getConnectionManagers()
Get the connection managers.- Returns:
- The value
-
getAos
public final Object[] getAos()
Get the aos.- Returns:
- the aos.
-
getAoJndiNames
public final String[] getAoJndiNames()
Get the admin object JNDI names.- Returns:
- the jndiNames.
-
getRecovery
public final XAResourceRecovery[] getRecovery()
Get the recovery modules.- Returns:
- The value
-
getConnector
public final Connector getConnector()
Get the management view of the connector- Returns:
- The value
-
getDataSources
public final DataSource[] getDataSources()
Get the management view of the datasources- Returns:
- The value
-
getCl
public final ClassLoader getCl()
Get the cl.- Returns:
- the cl.
-
getLog
public final DeployersLogger getLog()
Get the log.- Returns:
- the log.
-
-