aroundInvokes = ((JBossSessionBeanMetaData) beanMetaData).getAroundInvokes();
if(aroundInvokes != null)
{
for (DeclaredMethodSignature method : methods)
{
AroundInvoke aroundInvoke = getAroundInvokeAnnotation(aroundInvokes, method);
if(aroundInvoke != null)
{
if (this.aroundInvokes == null)
{
this.aroundInvokes = new HashMap<DeclaredMethodSignature, AroundInvoke>();