} catch (OpenEJBException e) {
continue;
}
if (bean instanceof Invokable) {
Invokable invokable = (Invokable) bean;
for (AroundInvoke aroundInvoke : invokable.getAroundInvoke()) {
checkAroundInvoke(ejbClass, aroundInvoke, bean.getEjbName());
}
for (AroundTimeout aroundTimeout : invokable.getAroundTimeout()) {
checkAroundTimeout(ejbClass, aroundTimeout, bean.getEjbName());
}
}
for (LifecycleCallback callback : bean.getPostConstruct()) {