{
super.introspect();
introspectLifecycle(getBeanType().getJavaClass());
_postConstructInterceptor = new LifecycleInterceptor(PostConstruct.class);
_postConstructInterceptor.introspect(getBeanType());
_preDestroyInterceptor = new LifecycleInterceptor(PreDestroy.class);
_preDestroyInterceptor.introspect(getBeanType());
// XXX: type is incorrect here. Should be moved to stateless generator?
introspectTimer(getBeanType());
}