public DirectTransactionResult execute(DirectAction directAction, DirectMethod directMethod, DirectTransactionData data)
throws DirectException {
Map<String, String> nsMapping = this.actionMapping.get(directAction.getNamespace());
String beanName = nsMapping.get(directAction.getName());
Object bean = this.applicationContext.getBean(beanName);
ExecutorAdapter beanExecutorAdapter = this.buildBeanExecutorAdapter(bean);
return beanExecutorAdapter.execute(directAction, directMethod, data);
}