public void defineConstructor()
{
Constructor<T> constructor;
try
{
WebBeansAnnotatedTypeUtil annotatedTypeUtil = getBean().getWebBeansContext().getAnnotatedTypeUtil();
AnnotatedConstructor<T> annotated = annotatedTypeUtil.getBeanConstructor(getAnnotatedType());
constructor = annotated.getJavaMember();
annotatedTypeUtil.addConstructorInjectionPointMetaData(getBean(), annotated);
getBean().setConstructor(constructor);
}
catch(Exception e)