"scott.stark(a)jboss.org" wrote : So the MappedReferenceMetaDataResolverDeployer
ends up doing:
|
| | // Determine the jndi name for the reference interface
| | String iface = getInterface(ref);
| | //LegacyEjb3JndiPolicy policy = new LegacyEjb3JndiPolicy();
| | String containerJndiName =
target.getBeanMetaData().determineJndiName();
| | if(containerJndiName != null)
| | ref.setResolvedJndiName(containerJndiName);
| |
Should like look more like:
| // Determine the jndi name for the reference interface
| String iface = getInterface(ref);
| String containerJndiName =
target.getBeanMetaData().determineResolvedJndiName(iface);
| if(containerJndiName != null)
| ref.setResolvedJndiName(containerJndiName);
|
?
S,
ALR
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4165992#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...