if(beanMetaData instanceof JBossSessionBeanMetaData)
{
for (DeclaredMethodSignature method : methods)
{
PostConstruct postConstruct = getLifeCycleAnnotation(((JBossSessionBeanMetaData) beanMetaData).getPostConstructs(), PostConstructImpl.class, method);
if (postConstruct != null)
{
if (postConstructs == null)
{
postConstructs = new HashMap<DeclaredMethodSignature, PostConstruct>();