* {@inheritDoc}
*/
public synchronized void deployResource(Object resource, String applicationName, String moduleName) throws Exception {
//deployResource is not synchronized as there is only one caller
//ResourceProxy which is synchronized
ConnectorResource domainResource = (ConnectorResource) resource;
ResourceInfo resourceInfo = new ResourceInfo(domainResource.getJndiName(), applicationName, moduleName);
PoolInfo poolInfo = new PoolInfo(domainResource.getPoolName(), applicationName, moduleName);
createConnectorResource(domainResource, resourceInfo, poolInfo);
}