//they would be available only to server instances that have a resoruce-ref
//that maps to a pool. So deploy resource would not be called during
//JDBC connection pool creation. The actualDeployResource method
//below is invoked by JdbcResourceDeployer when a resource-ref for a
//resource that is pointed to this pool is added to a server instance
JdbcConnectionPool jcp = (JdbcConnectionPool)resource;
PoolInfo poolInfo = new PoolInfo(jcp.getName(), applicationName, moduleName);
if(_logger.isLoggable(Level.FINE)){
_logger.fine(" JdbcConnectionPoolDeployer - deployResource : " + poolInfo + " calling actualDeploy");
}
actualDeployResource(resource, poolInfo);
}