// Create the injection target
InjectionTarget it = weldManager.createInjectionTarget(ejbDesc);
// Per instance required, create the creational context
CreationalContext<?> cc = weldManager.createCreationalContext(bean);
Object beanInstance = instance;
if( beanInstance == null ) {
// Create instance , perform constructor injection.