beans = injectManager.getBeans(type, Names.create(name));
else
beans = injectManager.getBeans(type, CurrentLiteral.CURRENT);
if (beans != null && beans.size() != 0)
return injectManager.resolve(beans);
beans = injectManager.getBeans(type, new AnnotationLiteral<Any>() {});
if (beans == null || beans.size() == 0)
return null;